Skip to content

Debology.Debby.Modules.Adjust.Attributes

AdjustLongAttribute Class

Attribute to mark a long field or property as adjustable.

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

Inheritance UnityEngine.Scripting.PreserveAttribute 🡒 AdjustAttribute 🡒 AdjustLongAttribute

Fields

AdjustLongAttribute.IsSlider Field

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

csharp
public bool IsSlider;

Field Value

System.Boolean

AdjustLongAttribute.Max Field

The maximum value for the long field or property.

csharp
public long Max;

Field Value

System.Int64

AdjustLongAttribute.Min Field

The minimum value for the long field or property.

csharp
public long Min;

Field Value

System.Int64

AdjustLongAttribute.PageSize Field

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

csharp
public long PageSize;

Field Value

System.Int64