update doc/*/scripting/user-input.md

This commit is contained in:
MihailRis 2025-01-07 22:40:46 +03:00
parent df9c301f58
commit 0d17396fe8
2 changed files with 20 additions and 0 deletions

View File

@ -57,6 +57,16 @@ input.add_callback("key:space", function ()
end)
```
You can also bind the function lifetime to the UI container instead of the HUD.
In that case, `input.add_callback` may be used until the `on_hud_open` is called.
```lua
input.add_callback("key:escape", function ()
print("NO")
return true -- prevents previously assigned functions from being called
end, document.root)
```
```python
input.get_mouse_pos() -> {int, int}
```

View File

@ -55,6 +55,16 @@ input.add_callback("key:space", function ()
end)
```
Также можно привязать время жизни функции к UI контейнеру, вместо HUD.
В таком случае, `input.add_callback` можно использовать до вызова `on_hud_open`.
```lua
input.add_callback("key:escape", function ()
print("NO")
return true -- предотвращает вызов назначенных ранее функций
end, document.root)
```
```python
input.get_mouse_pos() -> {int, int}
```