:DragInt
type DragInt = {
Format: string?,
Label: string?,
Callback: (DragInt, number) -> any,
Minimum: number?,
Maximum: number?,
Value: number?,
ReadOnly: boolean?,
SetValue: (DragIntFlags, number) -> DragIntFlags,
}
Example usage:
:DragInt({
Maximum = 100,
Minimum = 0,
Label = "Drag Int 0..100"
})
Theme colors:
Tag
Affects
FrameBg
Background color
FrameBgTransparency
Background transparency
Text
Text color
TextFont
Text font
TextSize
Text font size
Last updated