m ProbablePrime moved page ValueRadio (Component) to Component:ValueRadio: Creating component Namespace |
No edit summary |
||
Line 29: | Line 29: | ||
<!--T:6--> | <!--T:6--> | ||
== Related Issues == | == Related Issues == | ||
<!--T:7--> | <!--T:7--> |
Revision as of 22:32, 24 February 2024
This article or section is a Stub. You can help the Resonite Wiki by expanding it.
Component image
Intoduction
ValueRadio components can be used to create a radio selector, meaning a set of buttons that are used to set the same value to different options.
Fields
Name | Type | Description |
---|---|---|
persistent
|
Bool | Determines whether or not this item will be saved to the server. |
UpdateOrder
|
Int | Controls the order in which this component is updated. |
Enabled
|
Bool | Controls whether or not this component is enabled. |
CheckVisual
|
Bool | The boolean that is driven to true whenever the TargetValue is equal to the OptionValue
|
OptionValue
|
T | What to set the TargetValue to when the button is pressed.
|
TargetValue
|
IField<T> | The value to set when the button is pressed. |
Usage
To function, the component simply needs to be attached to a slot that also has a button component attached to it. From then on, pressing that button will activate the ValueRadio, making it set its TargetValue
to its OptionValue
, which then also sets its CheckVisual
to true.