Update certain example code snippets to use the new syntax

This commit is contained in:
Kongfa Waroros
2024-08-22 21:59:03 +07:00
parent e98b2c77c2
commit f27d12979d
6 changed files with 7 additions and 7 deletions

View File

@@ -205,7 +205,7 @@ current scene and replace it with the requested one.
# The solution is to defer the load to a later time, when
# we can be sure that no code from the current scene is running:
call_deferred("_deferred_goto_scene", path)
_deferred_goto_scene.call_deferred(path)
func _deferred_goto_scene(path):