2023-07-02 00:59:02 +02:00
|
|
|
# Class: input_float
|
|
|
|
|
|
|
|
## Inherit from 1 class: base_text_element
|
|
|
|
|
|
|
|
Class for representing an input field for editing a float value within the GUI.
|
|
|
|
|
|
|
|
## Functions (2)
|
|
|
|
|
|
|
|
### `get_value()`
|
|
|
|
|
|
|
|
- **Returns:**
|
|
|
|
- `float`: Get the value currently written inside the input field.
|
|
|
|
|
2023-07-05 00:30:57 +02:00
|
|
|
**Example Usage:**
|
2023-07-02 00:59:02 +02:00
|
|
|
```lua
|
|
|
|
float = input_float:get_value()
|
|
|
|
```
|
|
|
|
|
|
|
|
### `set_value(val)`
|
|
|
|
|
|
|
|
- **Parameters:**
|
|
|
|
- `val` (float): Set the value currently written inside the input field.
|
|
|
|
|
2023-07-05 00:30:57 +02:00
|
|
|
**Example Usage:**
|
2023-07-02 00:59:02 +02:00
|
|
|
```lua
|
|
|
|
input_float:set_value(val)
|
|
|
|
```
|
|
|
|
|
|
|
|
|