Skip to content

Debology.Debby.Modules.Adjust.Attributes

AdjustDoubleAttribute Class

Attribute to mark a double field or property as adjustable.

csharp
public class AdjustDoubleAttribute : Debology.Debby.Modules.Adjust.Attributes.AdjustAttribute

Inheritance UnityEngine.Scripting.PreserveAttribute 🡒 AdjustAttribute 🡒 AdjustDoubleAttribute

Fields

AdjustDoubleAttribute.IsSlider Field

Indicates whether the double value should be represented as a slider.

csharp
public bool IsSlider;

Field Value

System.Boolean

AdjustDoubleAttribute.Max Field

The maximum value for the double field or property.

csharp
public double Max;

Field Value

System.Double

AdjustDoubleAttribute.Min Field

The minimum value for the double field or property.

csharp
public double Min;

Field Value

System.Double

AdjustDoubleAttribute.PageSize Field

The page size (how much it increments / decrements when clicking the plus or minus button) for the double field or property.

csharp
public double PageSize;

Field Value

System.Double