Browse Source

singletons_autoload.rst: Eplain Singleton names...

...can be used directly.
Fallayn 7 years ago
parent
commit
5c44bdf74c
1 changed files with 7 additions and 0 deletions
  1. 7 0
      learning/step_by_step/singletons_autoload.rst

+ 7 - 0
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
 ---------------------