InputEventAction.xml 1.3 KB

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <class name="InputEventAction" inherits="InputEvent" version="3.2">
  3. <brief_description>
  4. Input event type for actions.
  5. </brief_description>
  6. <description>
  7. 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 &gt; Project Settings[/b] menu. See [method Node._input].
  8. </description>
  9. <tutorials>
  10. <link>https://docs.godotengine.org/en/latest/tutorials/inputs/inputevent.html#actions</link>
  11. </tutorials>
  12. <methods>
  13. </methods>
  14. <members>
  15. <member name="action" type="String" setter="set_action" getter="get_action" default="&quot;&quot;">
  16. The action's name. Actions are accessed via this [String].
  17. </member>
  18. <member name="pressed" type="bool" setter="set_pressed" getter="is_pressed" default="false">
  19. If [code]true[/code], the action's state is pressed. If [code]false[/code], the action's state is released.
  20. </member>
  21. <member name="strength" type="float" setter="set_strength" getter="get_strength" default="1.0">
  22. 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.
  23. </member>
  24. </members>
  25. <constants>
  26. </constants>
  27. </class>