- Found in:
- SkyUI
eventOnOptionSliderAccept(inta_option, floata_value)
Description
GitHub Wiki Description (SkyUI)
Called when a new slider value has been accepted.
Modify the internal state of the selcted option, then use the option setters to apply the changes to the active page.
Documentation String
Called when a new slider value has been accepted
Parameters
inta_option
GitHub Wiki Description (SkyUI)
The option ID.
floata_value
GitHub Wiki Description (SkyUI)
The accepted value.
Examples
Auto-Generated Example
Scriptname MyCoolScript extends SKI_ConfigBase
event OnOptionSliderAccept(int a_option, float a_value)
Debug.trace("Event received - OnOptionSliderAccept: a_option = " + a_option + " a_value = " + a_value)
endEvent