Debology.Debby.Modules.Adjust.Attributes
AdjustFloatAttribute Class
Attribute to mark a float field or property as adjustable.
csharp
public class AdjustFloatAttribute : Debology.Debby.Modules.Adjust.Attributes.AdjustAttributeInheritance UnityEngine.Scripting.PreserveAttribute 🡒 AdjustAttribute 🡒 AdjustFloatAttribute
Fields
AdjustFloatAttribute.IsSlider Field
Indicates whether the float value should be represented as a slider.
csharp
public bool IsSlider;Field Value
AdjustFloatAttribute.Max Field
The maximum value for the float field or property.
csharp
public float Max;Field Value
AdjustFloatAttribute.Min Field
The minimum value for the float field or property.
csharp
public float Min;Field Value
AdjustFloatAttribute.PageSize Field
The page size (how much it increments / decrements when clicking the plus or minus button) for the float field or property.
csharp
public float PageSize;