Toggle
info
- This class is only available in a Local environment
The Toggle class is a component which interacts with Unity Toggles on UI and 3D.
caution
The Toggle class is only compatible with TextMeshPro.
To get a Toggle from an item, use the GetComponent method.
let toggleComponent = item.GetComponent("Toggle")
You can then use the toggleComponent
property to access the Toggle class.
Methods
Method Name | Return Type | Parameters | Description |
---|---|---|---|
GetToggle | bool | none | Gets the current toggle value |
SetToggle | void | bool | Sets the current toggle value |
RegisterValueChanged | void | function(bool) | Registers an event for when the toggle value is changed |
RemoveAllValuesChanged | void | none | Removes all events for when the toggle value is changed |
GetColorBlock | ColorBlock? | none | Gets the ColorBlock for the element |
SetColorBlock | void | ColorBlock | Sets the ColorBlock for the element |