OnKeyDown: Difference between revisions

Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 1: Line 1:
{{ScriptItem
{{ScriptItem2
|endpoint = client
|name = onKeyDown
|side = client
|type = event
|type = event
|name = onKeyDown
|games = iii vc sa iv
|usage = a key is pressed down. If the key is held down, the event is triggered repeatedly.
|desc = a key is pressed down. If the key is held down, the event is triggered repeatedly.
|callbackParameters = Event event, int virtualKey, int physicalKey, int keyModifiers
|arg1 = int virtualKey The virtual key code for the key that was pressed down.
|parameter1 = int virtualKey The virtual key code for the key that was pressed down.
|arg2 = int physicalKey The physical key code for the key that was pressed down.
|parameter2 = int physicalKey The physical key code for the key that was pressed down.
|arg3 = int keyModifiers The key modifiers that were active when the key was pressed down.
|parameter3 = int keyModifiers The key modifiers that were active when the key was pressed down.
|note = See [https://wiki.libsdl.org/SDL_Keysym SDL Key Information].
|cancellable = false
|cancel = false
|notes = See [https://wiki.libsdl.org/SDL_Keysym SDL Key Information].
}}
}}