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