OnKeyUp: Difference between revisions

From GTA Connected
Jump to navigation Jump to search
No edit summary
 
No edit summary
 
Line 1: Line 1:
{{ScriptItem
{{ScriptItem2
|endpoint = client
|name = onKeyUp
|side = client
|type = event
|type = event
|name = onKeyUp
|games = iii vc sa iv
|usage = a key is released
|desc = a key is released
|callbackParameters = Event event, int virtualKey, int physicalKey, int keyModifiers
|arg1 = int virtualKey The virtual key code for the key that was released.
|parameter1 = int virtualKey The virtual key code for the key that was released.
|arg2 = int physicalKey The physical key code for the key that was released.
|parameter2 = int physicalKey The physical key code for the key that was released.
|arg3 = int keyModifiers The key modifiers that were active when the key was released.
|parameter3 = int keyModifiers The key modifiers that were active when the key was released.
|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].
}}
}}

Latest revision as of 20:28, 19 November 2022

Event Client Only icon-iii.png icon-vc.png icon-sa.png icon-iv.png Online and Offline Not Cancellable

Available since Client 1.0.0

onKeyUp(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

Examples

There aren't any examples for this event.

Compatibility

There isn't any compatibility information for this event.

Related

Client Related

icon-iii.png icon-vc.png icon-sa.png icon-iv.png OnCharacter
icon-iii.png icon-vc.png icon-sa.png icon-iv.png OnKeyDown
icon-iii.png icon-vc.png icon-sa.png icon-iv.png OnKeyUp