:SliderFloat
type SliderFloat = {
Value: number?,
Format: string?,
Label: string?,
Minimum: number?,
Maximum: number?
} & SliderIntFlags
Example usage:
:SliderFloat({
Label = "Slider Float",
Minimum = 0.0,
Maximum = 1.0,
Value = 0.5,
Format = "Ratio = %.3f"
})
Theme colors:
Tag
Affects
FrameBg
Background color
FrameBgTransparency
Background transparency
Text
Text color
TextFont
Text font
TextSize
Text font size
Last updated