2017-09-12 20:42:36 +00:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-02-01 01:03:48 +00:00
<class name= "InputEventAction" inherits= "InputEvent" version= "4.0" >
2017-09-12 20:42:36 +00:00
<brief_description >
Input event type for actions.
</brief_description>
<description >
2019-06-21 23:04:47 +00: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 20:42:36 +00:00
</description>
<tutorials >
2020-08-05 12:43:40 +00:00
<link title= "InputEvent: Actions" > https://docs.godotengine.org/en/latest/tutorials/inputs/inputevent.html#actions</link>
2020-10-01 08:34:47 +00:00
<link title= "2D Dodge The Creeps Demo" > https://godotengine.org/asset-library/asset/515</link>
<link title= "3D Voxel Demo" > https://godotengine.org/asset-library/asset/676</link>
2017-09-12 20:42:36 +00:00
</tutorials>
<methods >
</methods>
<members >
2021-06-05 19:24:24 +00:00
<member name= "action" type= "StringName" setter= "set_action" getter= "get_action" default= "&""" >
2017-10-15 22:07:13 +00:00
The action's name. Actions are accessed via this [String].
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 action's state is pressed. If [code]false[/code], the action's state is released.
2017-09-12 20:42:36 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "strength" type= "float" setter= "set_strength" getter= "get_strength" default= "1.0" >
2021-03-18 11:04:28 +00: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 specifying how strongly the joypad axis is bent or pressed.
2019-06-01 13:31:47 +00:00
</member>
2017-09-12 20:42:36 +00:00
</members>
<constants >
</constants>
</class>