Mention that the delta argument is in seconds in Node documentation

(cherry picked from commit fcb6ecaf21)
This commit is contained in:
Hugo Locurcio
2021-01-05 19:14:37 +01:00
committed by Rémi Verschelde
parent 9d916b8540
commit 7fb212fdb6
2 changed files with 5 additions and 5 deletions

View File

@@ -113,7 +113,7 @@
<argument index="0" name="delta" type="float">
</argument>
<description>
Called each physics frame with the time since the last physics frame as argument (in seconds). Equivalent to [method Node._physics_process].
Called each physics frame with the time since the last physics frame as argument ([code]delta[/code], in seconds). Equivalent to [method Node._physics_process].
If implemented, the method must return a boolean value. [code]true[/code] ends the main loop, while [code]false[/code] lets it proceed to the next frame.
</description>
</method>