You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-02 19:01:36 +00:00
Merge pull request #54077 from Duroxxigar/scenetreetimer-example
Update example code for SceneTreeTimer to reflect new await keyword
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
[gdscript]
|
||||
func some_function():
|
||||
print("Timer started.")
|
||||
yield(get_tree().create_timer(1.0), "timeout")
|
||||
await get_tree().create_timer(1.0).timeout
|
||||
print("Timer ended.")
|
||||
[/gdscript]
|
||||
[csharp]
|
||||
|
||||
Reference in New Issue
Block a user