From 8ae1d879ecd13b3d211609da06288548ca5e38b4 Mon Sep 17 00:00:00 2001 From: Yuri Sizov Date: Wed, 15 Sep 2021 18:57:12 +0300 Subject: [PATCH] Add a link to C# basics from the Step-by-Step tutorial Co-authored-by: Fabio Colella --- getting_started/step_by_step/your_first_game.rst | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/getting_started/step_by_step/your_first_game.rst b/getting_started/step_by_step/your_first_game.rst index 9ddca8d09..1d6a3b64c 100644 --- a/getting_started/step_by_step/your_first_game.rst +++ b/getting_started/step_by_step/your_first_game.rst @@ -13,7 +13,8 @@ a project, and how to build a 2D game. .. note:: This project is an introduction to the Godot engine. It assumes that you have some programming experience already. If you're new to programming entirely, you should start here: - :ref:`doc_scripting`. + :ref:`doc_scripting`. If you want to use C# in Godot, please also + read :ref:`doc_c_sharp` before continuing. The game is called "Dodge the Creeps!". Your character must move and avoid the enemies for as long as possible. Here is a preview of the @@ -166,9 +167,6 @@ click "Create": .. image:: img/attach_node_window.png -.. note:: If this is your first time encountering GDScript, please read - :ref:`doc_scripting` before continuing. - Start by declaring the member variables this object will need: .. tabs::