1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---@meta
---@class Keyboard
local Keyboard =
---If the key is held down this frame.
---@param key Key
---@return boolean
---@nodiscard
---If the key was pressed this frame.
---@param key Key
---@return boolean
---@nodiscard
---If the key was released this frame.
---@param key Key
---@return boolean
---@nodiscard
---If the key was repeated this frame.
---@param key Key
---@return boolean
---@nodiscard
---If the key was pressed or repeated this frame.
---@param key Key
---@return boolean
---@nodiscard
---Text that was typed by the keyboard this frame.
---@return string?
---@nodiscard
---If left or right control is down.
---@return boolean
---@nodiscard
---If left or right shift is down.
---@return boolean
---@nodiscard
---If left or right alt is down.
---@return boolean
---@nodiscard
---If left or right command is down.
---@return boolean
---@nodiscard
---If left or right control is down (command if the user is running on MacOS).
---@return boolean
---@nodiscard
return Keyboard