Input
Input Widget API
Input Widgets are textboxes for typing in specific number values. See Drag, Slider or InputText for more input types.
Iris provides a set of specific inputs for the datatypes: Number, Vector2, Vector3, UDim, UDim2, Rect, Color3 and the custom Color4.
Each Input widget has the same arguments but the types depend of the DataType:
- Text: string? = "Input{type}" -- the text to be displayed to the right of the textbox.
- Increment: DataType? = nil, -- the increment argument determines how a value will be rounded once the textbox looses focus.
- Min: DataType? = nil, -- the minimum value that the widget will allow, no clamping by default.
- Max: DataType? = nil, -- the maximum value that the widget will allow, no clamping by default.
- Format: string | { string }? = [DYNAMIC] -- uses
string.format
to customise visual display.
The format string can either by a single value which will apply to every box, or a table allowing specific text.
NOTE
If you do not specify a format option then Iris will dynamically calculate a relevant number of sigifs and format option. For example, if you have Increment, Min and Max values of 1, 0 and 100, then Iris will guess that you are only using integers and will format the value as an integer. As another example, if you have Increment, Min and max values of 0.005, 0, 1, then Iris will guess you are using a float of 3 significant figures.
Additionally, for certain DataTypes, Iris will append an prefix to each box if no format option is provided. For example, a Vector3 box will have the append values of "X: ", "Y: " and "Z: " to the relevant input box.
Properties
InputNum
WidgetHasStateInput.InputNum:
Iris.InputNum
An input box for numbers. The number can be either an integer or a float.
hasChildren = false
hasState = true
Arguments = {
Text: string? = "InputNum",
Increment: number? = nil,
Min: number? = nil,
Max: number? = nil,
Format: string? | { string }? = [DYNAMIC], -- Iris will dynamically generate an approriate format.
NoButtons: boolean? = false -- whether to display + and - buttons next to the input box.
}
Events = {
numberChanged: () -> boolean,
hovered: () -> boolean
}
States = {
number: State<number>?,
editingText: State<boolean>?
}
InputVector2
WidgetHasStateInput.InputVector2:
Iris.InputVector2
An input box for Vector2. The numbers can be either integers or floats.
hasChildren = false
hasState = true
Arguments = {
Text: string? = "InputVector2",
Increment: Vector2? = nil,
Min: Vector2? = nil,
Max: Vector2? = nil,
Format: string? | { string }? = [DYNAMIC] -- Iris will dynamically generate an approriate format.
}
Events = {
numberChanged: () -> boolean,
hovered: () -> boolean
}
States = {
number: State<Vector2>?,
editingText: State<boolean>?
}
InputVector3
WidgetHasStateInput.InputVector3:
Iris.InputVector3
An input box for Vector3. The numbers can be either integers or floats.
hasChildren = false
hasState = true
Arguments = {
Text: string? = "InputVector3",
Increment: Vector3? = nil,
Min: Vector3? = nil,
Max: Vector3? = nil,
Format: string? | { string }? = [DYNAMIC] -- Iris will dynamically generate an approriate format.
}
Events = {
numberChanged: () -> boolean,
hovered: () -> boolean
}
States = {
number: State<Vector3>?,
editingText: State<boolean>?
}
InputUDim
WidgetHasStateInput.InputUDim:
Iris.InputUDim
An input box for UDim. The Scale box will be a float and the Offset box will be an integer, unless specified differently.
hasChildren = false
hasState = true
Arguments = {
Text: string? = "InputUDim",
Increment: UDim? = nil,
Min: UDim? = nil,
Max: UDim? = nil,
Format: string? | { string }? = [DYNAMIC] -- Iris will dynamically generate an approriate format.
}
Events = {
numberChanged: () -> boolean,
hovered: () -> boolean
}
States = {
number: State<UDim>?,
editingText: State<boolean>?
}
InputUDim2
WidgetHasStateInput.InputUDim2:
Iris.InputUDim2
An input box for UDim2. The Scale boxes will be floats and the Offset boxes will be integers, unless specified differently.
hasChildren = false
hasState = true
Arguments = {
Text: string? = "InputUDim2",
Increment: UDim2? = nil,
Min: UDim2? = nil,
Max: UDim2? = nil,
Format: string? | { string }? = [DYNAMIC] -- Iris will dynamically generate an approriate format.
}
Events = {
numberChanged: () -> boolean,
hovered: () -> boolean
}
States = {
number: State<UDim2>?,
editingText: State<boolean>?
}
InputRect
WidgetHasStateInput.InputRect:
Iris.InputRect
An input box for Rect. The numbers will default to integers, unless specified differently.
hasChildren = false
hasState = true
Arguments = {
Text: string? = "InputRect",
Increment: Rect? = nil,
Min: Rect? = nil,
Max: Rect? = nil,
Format: string? | { string }? = [DYNAMIC] -- Iris will dynamically generate an approriate format.
}
Events = {
numberChanged: () -> boolean,
hovered: () -> boolean
}
States = {
number: State<Rect>?,
editingText: State<boolean>?
}
InputColor3
WidgetHasStateInput.InputColor3:
Iris.InputColor3
An input box for Color3. The input boxes are draggable between 0 and 255 or if UseFloats then between 0 and 1. Input can also be done using HSV instead of the default RGB. If no format argument is provided then a default R, G, B or H, S, V prefix is applied.
hasChildren = false
hasState = true
Arguments = {
Text: string? = "InputColor3",
UseFloats: boolean? = false, -- constrain the values between floats 0 and 1 or integers 0 and 255.
UseHSV: boolean? = false, -- input using HSV instead.
Format: string? | { string }? = [DYNAMIC] -- Iris will dynamically generate an approriate format.
}
Events = {
numberChanged: () -> boolean,
hovered: () -> boolean
}
States = {
color: State<Color3>?,
editingText: State<boolean>?
}
InputColor4
WidgetHasStateInput.InputColor4:
Iris.InputColor4
An input box for Color4. Color4 is a combination of Color3 and a fourth transparency argument. It has two states for this purpose. The input boxes are draggable between 0 and 255 or if UseFloats then between 0 and 1. Input can also be done using HSV instead of the default RGB. If no format argument is provided then a default R, G, B, T or H, S, V, T prefix is applied.
hasChildren = false
hasState = true
Arguments = {
Text: string? = "InputColor4",
UseFloats: boolean? = false, -- constrain the values between floats 0 and 1 or integers 0 and 255.
UseHSV: boolean? = false, -- input using HSV instead.
Format: string? | { string }? = [DYNAMIC] -- Iris will dynamically generate an approriate format.
}
Events = {
numberChanged: () -> boolean,
hovered: () -> boolean
}
States = {
color: State<Color3>?,
transparency: State<number>?,
editingText: State<boolean>?
}