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.AdjustAttributeInheritance 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
AdjustDoubleAttribute.Max Field
The maximum value for the double field or property.
csharp
public double Max;Field Value
AdjustDoubleAttribute.Min Field
The minimum value for the double field or property.
csharp
public double Min;Field Value
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;