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