diff --git a/learning/step_by_step/singletons_autoload.rst b/learning/step_by_step/singletons_autoload.rst index df1223ed..fa459605 100644 --- a/learning/step_by_step/singletons_autoload.rst +++ b/learning/step_by_step/singletons_autoload.rst @@ -49,6 +49,13 @@ This means that any node can access a singleton named "playervariables" with: :: var player_vars = get_node("/root/playervariables") + player_vars.health + +Or even simpler using the name directly: + +:: + + playervariables.health Custom scene switcher ---------------------