소스 검색

Merge pull request #8713 from eztaah/fix1

Reorder instructions in 06.heads_up_display.rst
Matthew 1 년 전
부모
커밋
5f40815288
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      getting_started/first_2d_game/06.heads_up_display.rst

+ 2 - 2
getting_started/first_2d_game/06.heads_up_display.rst

@@ -184,8 +184,8 @@ Add the code below to ``HUD`` to update the score
         GetNode<Label>("ScoreLabel").Text = score.ToString();
     }
 
-Connect the ``timeout()`` signal of ``MessageTimer`` and the ``pressed()``
-signal of ``StartButton``, and add the following code to the new functions:
+Connect the ``pressed()`` signal of ``StartButton`` and the ``timeout()``
+signal of ``MessageTimer``, and add the following code to the new functions:
 
 .. tabs::
  .. code-tab:: gdscript GDScript