2017-09-12 20:42:36 +00:00
<?xml version="1.0" encoding="UTF-8" ?>
2019-04-01 10:33:56 +00:00
<class name= "InputEventKey" inherits= "InputEventWithModifiers" category= "Core" version= "3.2" >
2017-09-12 20:42:36 +00:00
<brief_description >
Input event type for keyboard events.
</brief_description>
<description >
2017-10-15 22:07:13 +00:00
Stores key presses on the keyboard. Supports key presses, key releases and [member echo] events.
2017-09-12 20:42:36 +00:00
</description>
<tutorials >
2018-11-05 07:46:27 +00:00
<link > https://docs.godotengine.org/en/latest/tutorials/inputs/inputevent.html</link>
2017-09-12 20:42:36 +00:00
</tutorials>
<methods >
<method name= "get_scancode_with_modifiers" qualifiers= "const" >
<return type= "int" >
</return>
<description >
2018-08-19 04:29:12 +00:00
Returns the scancode combined with modifier keys such as [code]Shift[/code] or [code]Alt[/code]. See also [InputEventWithModifiers].
2017-09-12 20:42:36 +00:00
</description>
</method>
</methods>
<members >
2019-06-29 10:38:01 +00:00
<member name= "echo" type= "bool" setter= "set_echo" getter= "is_echo" default= "false" >
2018-12-20 12:46:54 +00:00
If [code]true[/code], the key was already pressed before this event. It means the user is holding the key down.
2017-09-12 20:42:36 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "pressed" type= "bool" setter= "set_pressed" getter= "is_pressed" default= "false" >
2018-12-20 12:46:54 +00:00
If [code]true[/code], the key's state is pressed. If [code]false[/code], the key's state is released.
2017-09-12 20:42:36 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "scancode" type= "int" setter= "set_scancode" getter= "get_scancode" default= "0" >
2019-03-27 19:01:16 +00:00
Key scancode, one of the [enum KeyList] constants.
2017-09-12 20:42:36 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "unicode" type= "int" setter= "set_unicode" getter= "get_unicode" default= "0" >
2019-06-21 23:04:47 +00:00
Key Unicode identifier when relevant. Unicode identifiers for the composite characters and complex scripts may not be available unless IME input mode is active. See [method OS.set_ime_active] for more information.
2017-09-12 20:42:36 +00:00
</member>
</members>
<constants >
</constants>
</class>