Document SceneTreeTimer being freed automatically when elapsed
The note was present in the SceneTree `create_timer()` class
documentation, but not in the SceneTreeTimer class documentation.
(cherry picked from commit 796ea60d11
)
This commit is contained in:
parent
47f9a316ce
commit
6ff6c503d0
|
@ -12,6 +12,7 @@
|
|||
yield(get_tree().create_timer(1.0), "timeout")
|
||||
print("Timer ended.")
|
||||
[/codeblock]
|
||||
The timer will be automatically freed after its time elapses.
|
||||
</description>
|
||||
<tutorials>
|
||||
</tutorials>
|
||||
|
@ -19,7 +20,7 @@
|
|||
</methods>
|
||||
<members>
|
||||
<member name="time_left" type="float" setter="set_time_left" getter="get_time_left">
|
||||
The time remaining.
|
||||
The time remaining (in seconds).
|
||||
</member>
|
||||
</members>
|
||||
<signals>
|
||||
|
|
Loading…
Reference in New Issue