2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2019-04-01 12:33:56 +02:00
<class name= "InputEventKey" inherits= "InputEventWithModifiers" category= "Core" version= "3.2" >
2017-09-12 22:42:36 +02:00
<brief_description >
Input event type for keyboard events.
</brief_description>
<description >
2017-10-16 00:07:13 +02:00
Stores key presses on the keyboard. Supports key presses, key releases and [member echo] events.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
2018-11-05 08:46:27 +01:00
<link > https://docs.godotengine.org/en/latest/tutorials/inputs/inputevent.html</link>
2017-09-12 22:42:36 +02:00
</tutorials>
<methods >
<method name= "get_scancode_with_modifiers" qualifiers= "const" >
<return type= "int" >
</return>
<description >
2018-08-19 06:29:12 +02:00
Returns the scancode combined with modifier keys such as [code]Shift[/code] or [code]Alt[/code]. See also [InputEventWithModifiers].
2017-09-12 22:42:36 +02:00
</description>
</method>
</methods>
<members >
2019-06-29 12:38:01 +02:00
<member name= "echo" type= "bool" setter= "set_echo" getter= "is_echo" default= "false" >
2018-12-20 13:46:54 +01: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 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "pressed" type= "bool" setter= "set_pressed" getter= "is_pressed" default= "false" >
2018-12-20 13:46:54 +01:00
If [code]true[/code], the key's state is pressed. If [code]false[/code], the key's state is released.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "scancode" type= "int" setter= "set_scancode" getter= "get_scancode" default= "0" >
2019-03-27 20:01:16 +01:00
Key scancode, one of the [enum KeyList] constants.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "unicode" type= "int" setter= "set_unicode" getter= "get_unicode" default= "0" >
2019-06-22 01:04:47 +02: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 22:42:36 +02:00
</member>
</members>
<constants >
</constants>
</class>