GML Numeric Input Widget
Defines a GUI text box that only allows integers within a specified range.
@GUI::NumericInput
@GUI::NumericInput {
min: 0
value: 42
max: 9000
}
Property | Type | Possible values | Description |
---|---|---|---|
min | int | Any 64 bit integer | Minimum number the input can be set to |
max | int | Any 64 bit integer | Maximum number the input can be set to |
value | int | Any 64 bit integer | Initial value |