Skip to content

Debology.Debby.Modules.Adjust.Attributes

AdjustULongAttribute Class

Attribute to mark a ulong field or property as adjustable.

csharp
public class AdjustULongAttribute : Debology.Debby.Modules.Adjust.Attributes.AdjustAttribute

Inheritance UnityEngine.Scripting.PreserveAttribute 🡒 AdjustAttribute 🡒 AdjustULongAttribute

Fields

AdjustULongAttribute.IsSlider Field

Indicates whether the ulong value should be represented as a slider.

csharp
public bool IsSlider;

Field Value

System.Boolean

AdjustULongAttribute.Max Field

The maximum value for the ulong field or property.

csharp
public ulong Max;

Field Value

System.UInt64

AdjustULongAttribute.Min Field

The minimum value for the ulong field or property.

csharp
public ulong Min;

Field Value

System.UInt64

AdjustULongAttribute.PageSize Field

The increment size (how much it increments / decrements when clicking the plus or minus button) for the ulong field or property.

csharp
public ulong PageSize;

Field Value

System.UInt64