luxe: ui/slider.control
import "luxe: ui/slider.control" for Datano docs found
Variables
Section titled “Variables”var value : Num = 1var min : Num = 0var max : Num = 1var step : Num = -1var invert : Bool = falseUISlider
Section titled “UISlider”import "luxe: ui/slider.control" for UISliderno docs found
UISlider.create(.)
Section titled “UISlider.create(.)”UISlider.create(ui_entity : Any) : unknownno docs found
UISlider.set_value(..)
Section titled “UISlider.set_value(..)”UISlider.set_value(control : Control, value : Num) : NoneSet the value of the slider
UISlider.get_value(.)
Section titled “UISlider.get_value(.)”UISlider.get_value(control : Control) : NumGet the current value of the slider
UISlider.set_step(..)
Section titled “UISlider.set_step(..)”UISlider.set_step(control : Control, value : Num) : unknownSet the step of the slider. -1 will mean no snapping
UISlider.get_step(.)
Section titled “UISlider.get_step(.)”UISlider.get_step(control : Control) : NumGet the current step of the slider
UISlider.set_min(..)
Section titled “UISlider.set_min(..)”UISlider.set_min(control : Control, value : Num) : unknownSet the minimum value of the slider
UISlider.get_min(.)
Section titled “UISlider.get_min(.)”UISlider.get_min(control : Control) : NumGet the minimum value of the slider
UISlider.set_max(..)
Section titled “UISlider.set_max(..)”UISlider.set_max(control : Control, value : Num) : unknownSet the maximum value of the slider
UISlider.get_max(.)
Section titled “UISlider.get_max(.)”UISlider.get_max(control : Control) : NumGet the maximum value of the slider
UISlider.set_inverted(..)
Section titled “UISlider.set_inverted(..)”UISlider.set_inverted(control : Control, value : Bool) : unknownSet the inverted state of the slider
UISlider.get_inverted(.)
Section titled “UISlider.get_inverted(.)”UISlider.get_inverted(control : Control) : BoolGet the inverted state of the slider