2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2017-11-24 09:16:52 +01:00
<class name= "InputEvent" inherits= "Resource" category= "Core" version= "3.0-beta" >
2017-09-12 22:42:36 +02:00
<brief_description >
Generic input event
</brief_description>
<description >
2017-10-16 00:07:13 +02:00
Base class of all sort of input event. See [method Node._input].
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
2017-10-16 00:07:13 +02:00
http://docs.godotengine.org/en/stable/learning/features/inputs/inputevent.html
2017-09-12 22:42:36 +02:00
</tutorials>
<demos >
</demos>
<methods >
<method name= "action_match" qualifiers= "const" >
<return type= "bool" >
</return>
<argument index= "0" name= "event" type= "InputEvent" >
</argument>
<description >
2017-11-18 01:29:32 +01:00
Returns [code]true[/code] if this event matches [code]event[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "as_text" qualifiers= "const" >
<return type= "String" >
</return>
<description >
Returns a [String] representation of the event.
</description>
</method>
<method name= "get_id" qualifiers= "const" >
<return type= "int" >
</return>
<description >
2017-10-16 00:07:13 +02:00
Returns the event's ID.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "is_action" qualifiers= "const" >
<return type= "bool" >
</return>
<argument index= "0" name= "action" type= "String" >
</argument>
<description >
2017-10-16 00:07:13 +02:00
Returns [code]true[/code] if this input event matches a pre-defined action of any type.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "is_action_pressed" qualifiers= "const" >
<return type= "bool" >
</return>
<argument index= "0" name= "action" type= "String" >
</argument>
<description >
2017-10-16 00:07:13 +02:00
Returns [code]true[/code] if the given action is being pressed (and is not an echo event for KEY events). Not relevant for the event types [code]MOUSE_MOTION[/code], [code]SCREEN_DRAG[/code] or [code]NONE[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "is_action_released" qualifiers= "const" >
<return type= "bool" >
</return>
<argument index= "0" name= "action" type= "String" >
</argument>
<description >
2017-10-16 00:07:13 +02:00
Returns [code]true[/code] if the given action is released (i.e. not pressed). Not relevant for the event types [code]MOUSE_MOTION[/code], [code]SCREEN_DRAG[/code] or [code]NONE[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "is_action_type" qualifiers= "const" >
<return type= "bool" >
</return>
<description >
2017-10-16 00:07:13 +02:00
Returns [code]true[/code] if this input event's type is one of the [code]InputEvent[/code] constants.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "is_echo" qualifiers= "const" >
<return type= "bool" >
</return>
<description >
2017-10-16 00:07:13 +02:00
Returns [code]true[/code] if this input event is an echo event (only for events of type KEY).
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "is_pressed" qualifiers= "const" >
<return type= "bool" >
</return>
<description >
2017-10-16 00:07:13 +02:00
Returns [code]true[/code] if this input event is pressed. Not relevant for the event types [code]MOUSE_MOTION[/code], [code]SCREEN_DRAG[/code] or [code]NONE[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "set_id" >
<return type= "void" >
</return>
<argument index= "0" name= "id" type= "int" >
</argument>
<description >
</description>
</method>
<method name= "shortcut_match" qualifiers= "const" >
<return type= "bool" >
</return>
<argument index= "0" name= "event" type= "InputEvent" >
</argument>
<description >
</description>
</method>
<method name= "xformed_by" qualifiers= "const" >
<return type= "InputEvent" >
</return>
<argument index= "0" name= "xform" type= "Transform2D" >
</argument>
<argument index= "1" name= "local_ofs" type= "Vector2" default= "Vector2( 0, 0 )" >
</argument>
<description >
</description>
</method>
</methods>
<members >
2017-09-13 08:49:40 +02:00
<member name= "device" type= "int" setter= "set_device" getter= "get_device" >
2017-10-16 00:07:13 +02:00
The event's device ID.
2017-09-12 22:42:36 +02:00
</member>
</members>
<constants >
</constants>
</class>