Ver Fonte

Update example code for SceneTreeTimer to reflect new await keyword

Duroxxigar há 4 anos atrás
pai
commit
cfb5d2dbf0
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      doc/classes/SceneTreeTimer.xml

+ 1 - 1
doc/classes/SceneTreeTimer.xml

@@ -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]