Improve Input.is_action_just_* docs.

More clarification.

(cherry picked from commit 11aa330a6f)
This commit is contained in:
Pieter-Jan Briers 2018-03-18 13:41:25 +01:00 committed by Hein-Pieter van Braam
parent e53f01a7af
commit f12db4013e

View file

@ -182,7 +182,8 @@
<argument index="0" name="action" type="String">
</argument>
<description>
Returns [code]true[/code] when you start pressing the action event.
Returns [code]true[/code] when the user starts pressing the action event, meaning it's true only on the frame that the user pressed down the button.
This is useful for code that needs to run only once when an action is pressed, instead of every frame while it's pressed.
</description>
</method>
<method name="is_action_just_released" qualifiers="const">
@ -191,7 +192,7 @@
<argument index="0" name="action" type="String">
</argument>
<description>
Returns [code]true[/code] when you stop pressing the action event.
Returns [code]true[/code] when the user stops pressing the action event, meaning it's true only on the frame that the user released the button.
</description>
</method>
<method name="is_action_pressed" qualifiers="const">