Skip to content

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

Inheritance 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

System.Boolean

AdjustIntAttribute.Max Field

The maximum value for the integer field or property.

csharp
public int Max;

Field Value

System.Int32

AdjustIntAttribute.Min Field

The minimum value for the integer field or property.

csharp
public int Min;

Field Value

System.Int32

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;

Field Value

System.Int32