add doc/*/scripting/builtins/libinput.md

This commit is contained in:
MihailRis
2025-11-16 14:29:03 +03:00
parent bcfdb6196a
commit 64c73f4d0d
2 changed files with 20 additions and 2 deletions
+10 -1
View File
@@ -13,7 +13,16 @@ input.mousecode(mousename: str) --> int
Returns mouse button code or -1 if unknown
```lua
input.add_callback(bindname: str, callback: function)
input.add_callback(
-- Binding name
bindname: str,
-- Handler
callback: function
-- UI element that owns the handler (responsible for the handler's lifetime)
[optional] owner: Element,
-- Ignore input capture by UI elements
[optional] istoplevel: bool
)
```
Add binding activation callback. Example: