Debology.Debby.Elements Namespace
| Classes | |
|---|---|
| DebbyButton | A simple button with an optional icon. |
| DebbyCategory | An organizational element with a title that positions elements inside it horizontally, and is the top level organizational element in Adjust by default. |
| DebbyColorButton | A button that displays a color. It and opens the color picker when clicked. |
| DebbyControl | The base class for all Debby controls. |
| DebbyDoublePicker | An input field for System.Double values, with an optional min / max range, and pageSize (how much the value is incremented or decremented by clicking the plus or minus buttons). |
| DebbyDoubleSlider | A slider for System.Double values, with an optional min / max range, and pageSize (how big each division in the slider is). |
| DebbyDropdown | A simple dropdown element that accepts a list of strings as its options. |
| DebbyEnumDropdown<T> | A simple dropdown element that accepts an enum type as its options. |
| DebbyFloatPicker | A slider for System.Single values, with an optional min / max range, and pageSize (how much the value is incremented or decremented by clicking the plus or minus buttons). |
| DebbyFloatSlider | A slider for System.Single values, with an optional min / max range, and pageSize (how big each division in the slider is). |
| DebbyGradientElement | Draws a vertical or horizontal gradient between two colors. |
| DebbyGroup | An organizational element with a title that positions elements inside it vertically. |
| DebbyIntPicker | A slider for System.Int32 values, with an optional min / max range, and pageSize (how much the value is incremented or decremented by clicking the plus or minus buttons). |
| DebbyIntSlider | A slider for System.Int32 values, with an optional min / max range, and pageSize (how big each division in the slider is). |
| DebbyLongPicker | A slider for System.Int64 values, with an optional min / max range, and pageSize (how much the value is incremented or decremented by clicking the plus or minus buttons). |
| DebbyLongSlider | A slider for System.Int64 values, with an optional min / max range, and pageSize (how big each division in the slider is). NOTE: The slider range is limited to int.MinValue to int.MaxValue due to Unity's SliderInt limitations. Values outside this range can still be set via direct input. |
| DebbyNumberPicker<T,TField> | Abstract base class for number pickers that provides shared UI construction and event handling logic. |
| DebbyTextField | A simple text input field with a label. |
| DebbyToggle | A simple boolean toggle. |
| DebbyUIntPicker | A slider for System.UInt32 values, with an optional min / max range, and pageSize (how much the value is incremented or decremented by clicking the plus or minus buttons). |
| DebbyUIntSlider | A slider for System.Int64 values, with an optional min / max range, and pageSize (how big each division in the slider is). NOTE: The slider range is limited to 0 to int.MaxValue due to Unity's SliderInt limitations. Values outside this range can still be set via direct input. |
| DebbyULongPicker | A slider for System.UInt64 values, with an optional min / max range, and pageSize (how much the value is incremented or decremented by clicking the plus or minus buttons). |
| DebbyULongSlider | A slider for System.UInt64 values, with an optional min / max range, and pageSize (how big each division in the slider is). NOTE: The slider range is limited to 0 to int.MaxValue due to Unity's SliderInt limitations. Values outside this range can still be set via direct input. |
| DebbyValueControl<T> | The base class for all simple value controls in Adjust. |
| DebbyVector2Field | A simple UnityEngine.Vector2 input field. |
| DebbyVector3Field | A simple UnityEngine.Vector3 input field. This is also used to display UnityEngine.Quaternion values. |
| DebbyVector4Field | A simple UnityEngine.Vector4 input field. |
| Enums | |
|---|---|
| DebbyIcon | A collection of icons for use in Adjust elements. You can add it to a button by using Icon, and to a context by using Icon. |