Skip to content

Commit

Permalink
Update getting started 2D to 4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Piralein committed Sep 7, 2024
1 parent 1508be4 commit 1437b65
Show file tree
Hide file tree
Showing 14 changed files with 13 additions and 3 deletions.
14 changes: 11 additions & 3 deletions getting_started/first_2d_game/06.heads_up_display.rst
Original file line number Diff line number Diff line change
Expand Up @@ -285,12 +285,20 @@ mobs to remove themselves. We can do this with the "group" feature.

In the ``Mob`` scene, select the root node and click the "Node" tab next to the
Inspector (the same place where you find the node's signals). Next to "Signals",
click "Groups" and you can type a new group name and click "Add".
click "Groups" to open the group overview
and the "+" button to open the "Create New Group" dialog.

.. image:: img/group_tab.webp

Now all mobs will be in the "mobs" group. We can then add the following line to
the ``new_game()`` function in ``Main``:
Name the group ``mobs`` and click "ok" to add a new scene group.

.. image:: img/add_group_dialog.webp

Now all mobs will be in the "mobs" group.

.. image:: img/scene_group_mobs.webp

We can then add the following line to the ``new_game()`` function in ``Main``:

.. tabs::
.. code-tab:: gdscript GDScript
Expand Down
2 changes: 2 additions & 0 deletions getting_started/first_2d_game/07.finishing-up.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ All audio is automatically imported with the ``Loop`` setting disabled.
If you want the music to loop seamlessly, click on the Stream file arrow,
select ``Make Unique``, then click on the Stream file and check the ``Loop`` box.

.. image:: img/unique_resource_music.webp

To play the music, add ``$Music.play()`` in the ``new_game()``
function and ``$Music.stop()`` in the ``game_over()`` function.

Expand Down
Binary file not shown.
Binary file modified getting_started/first_2d_game/img/attach_node_window.webp
Binary file not shown.
Binary file modified getting_started/first_2d_game/img/group_tab.webp
Binary file not shown.
Binary file modified getting_started/first_2d_game/img/input-mapping-add-action.webp
Binary file not shown.
Binary file modified getting_started/first_2d_game/img/input-mapping-add-key.webp
Binary file not shown.
Binary file modified getting_started/first_2d_game/img/input-mapping-completed.webp
Binary file not shown.
Binary file not shown.
Binary file modified getting_started/first_2d_game/img/player_signal_connection.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified getting_started/first_2d_game/img/setting-stretch-mode.webp
Binary file not shown.
Binary file not shown.

0 comments on commit 1437b65

Please sign in to comment.