Skip to content

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.AdjustAttribute

Inheritance 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

System.Boolean

AdjustUIntAttribute.Max Field

The maximum value for the uint field or property.

csharp
public uint Max;

Field Value

System.UInt32

AdjustUIntAttribute.Min Field

The minimum value for the uint field or property.

csharp
public uint Min;

Field Value

System.UInt32

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;

Field Value

System.UInt32