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= "InputEventAction" inherits= "InputEvent" category= "Core" version= "3.2" >
2017-09-12 22:42:36 +02:00
<brief_description >
Input event type for actions.
</brief_description>
<description >
2019-06-22 01:04:47 +02:00
Contains a generic action which can be targeted from several types of inputs. Actions can be created from the [b]Input Map[/b] tab in the [b]Project > Project Settings[/b] menu. See [method Node._input].
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#actions</link>
2017-09-12 22:42:36 +02:00
</tutorials>
<methods >
</methods>
<members >
2019-06-29 12:38:01 +02:00
<member name= "action" type= "String" setter= "set_action" getter= "get_action" default= """" >
2017-10-16 00:07:13 +02:00
The action's name. Actions are accessed via this [String].
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 action's state is pressed. If [code]false[/code], the action's state is released.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "strength" type= "float" setter= "set_strength" getter= "get_strength" default= "1.0" >
2019-06-22 01:04:47 +02:00
The action's strength between 0 and 1. This value is considered as equal to 0 if pressed is [code]false[/code]. The event strength allows faking analog joypad motion events, by precising how strongly is the joypad axis bent or pressed.
2019-06-01 15:31:47 +02:00
</member>
2017-09-12 22:42:36 +02:00
</members>
<constants >
</constants>
</class>