onKeyUp
Jump to navigation
Jump to search
Event
Client Only
Online and Offline
Not Cancellable
Available since Client 1.0.0
function(Event event, int virtualKey, int physicalKey, int keyModifiers)
The onKeyUp event is invoked when a key is released.
Parameters
1) | Event | event | The event object for this event. |
2) | int | virtualKey | The virtual key code for the key that was released. |
3) | int | physicalKey | The physical key code for the key that was released. |
4) | int | keyModifiers | The key modifiers that were active when the key was released. |
Attributes
const | This event cannot be cancelled. |
Notes
- See SDL Key Information.
Examples
There aren't any examples for this event.
Compatibility
There isn't any compatibility information for this event.
Related
Client Related
OnCharacter
OnKeyDown
OnKeyUp