2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-03-16 23:01:02 +01:00
<class name= "InputEventAction" inherits= "InputEvent" version= "3.5" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
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 >
2021-11-15 17:11:20 +01:00
<link title= "InputEvent: Actions" > $DOCS_URL/tutorials/inputs/inputevent.html#actions</link>
2020-10-01 10:34:47 +02: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 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" >
2021-03-18 12:04:28 +01: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 15:31:47 +02:00
</member>
2017-09-12 22:42:36 +02:00
</members>
<constants >
</constants>
</class>