Browse Source

Merge pull request #3578 from mrushyendra/patch-1

Fix incorrect Node label in "Your first game"
Max Hilbrunner 5 years ago
parent
commit
4bf237f921
1 changed files with 1 additions and 1 deletions
  1. 1 1
      getting_started/step_by_step/your_first_game.rst

+ 1 - 1
getting_started/step_by_step/your_first_game.rst

@@ -1145,7 +1145,7 @@ functions:
 
     public void OnMessageTimerTimeout()
     {
-        GetNode<Label>("MessageLabel").Hide();
+        GetNode<Label>("Message").Hide();
     }
 
 Connecting HUD to Main