XITextField
An element that allows users to edit a string / line of text
Fields
Field | Type | Description |
Label | string | Name of the field |
Value | string | Text value of the input field |
Events
Event | Description |
ChangeEvent<string> | Executed whenever the Value changes |
XIIntegerField
An element that allows users to edit an integer value
Fields
Field | Type | Description |
Label | string | Name of the field |
Value | int | Integer value of the input field |
Events
Event | Description |
ChangeEvent<int> | Executed whenever the Value changes |
XIFloatField
An element that allows users to edit a float value
Fields
Field | Type | Description |
Label | string | Name of the field |
Value | float | Float value of the input field |
Events
Event | Description |
ChangeEvent<float> | Executed whenever the Value changes |
XIVector2Field
An element that allows users to edit a Vector2 value
Fields
Field | Type | Description |
Label | string | Name of the field |
Value | Vector2 | Vector2 value of the input field |
Events
Event | Description |
ChangeEvent<Vector2> | Executed whenever the Value changes |
XIVector3Field
An element that allows users to edit a Vector3 value
Fields
Field | Type | Description |
Label | string | Name of the field |
Value | Vector3 | Vector3 value of the input field |
Events
Event | Description |
ChangeEvent<Vector3> | Executed whenever the Value changes |
XIVector4Field
An element that allows users to edit a Vector4 value
Fields
Field | Type | Description |
Label | string | Name of the field |
Value | Vector4 | Vector4 value of the input field |
Events
Event | Description |
ChangeEvent<Vector4> | Executed whenever the Value changes |