Update example code for SceneTreeTimer to reflect new await keyword
This commit is contained in:
parent
fad7034e8b
commit
cfb5d2dbf0
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@
|
||||||
[gdscript]
|
[gdscript]
|
||||||
func some_function():
|
func some_function():
|
||||||
print("Timer started.")
|
print("Timer started.")
|
||||||
yield(get_tree().create_timer(1.0), "timeout")
|
await get_tree().create_timer(1.0).timeout
|
||||||
print("Timer ended.")
|
print("Timer ended.")
|
||||||
[/gdscript]
|
[/gdscript]
|
||||||
[csharp]
|
[csharp]
|
||||||
|
|
Loading…
Reference in a new issue