1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-07-08 12:54:27 +00:00
CC-Tweaked/doc/events/key_up.md
Jonathan Coates 52b78f92cd
Use standard Markdown link syntax for references
References are now written using normal links: You now use [`print`] or
[print a string][`print`]) instead of @{print} or @{print|print a
string}.
2023-08-24 11:23:33 +01:00

866 B

module: [kind=event] key_up see: keys For a lookup table of the given keys.

Fired whenever a key is released (or the terminal is closed while a key was being pressed).

This event returns a numerical "key code" (for instance, F1 is 290). This value may vary between versions and so it is recommended to use the constants in the [keys] API rather than hard coding numeric values.

Return values

  1. [string]: The event name.
  2. [number]: The numerical key value of the key pressed.

Example

Prints each key released on the keyboard whenever a [key_up] event is fired.

while true do
  local event, key = os.pullEvent("key_up")
  local name = keys.getName(key) or "unknown key"
  print(name .. " was released.")
end