Skip to content

Commit ee9d206

Browse files
authored
Merge pull request godotengine#8946 from skyace65/First2D-Fixes
Minor dodge the creeps fixes
2 parents 8a73974 + 9bdfd25 commit ee9d206

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

getting_started/first_2d_game/03.coding_the_player.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ Start by declaring the member variables this object will need:
4848
Using the ``export`` keyword on the first variable ``speed`` allows us to set
4949
its value in the Inspector. This can be handy for values that you want to be
5050
able to adjust just like a node's built-in properties. Click on the ``Player``
51-
node and you'll see the property now appears in the "Script Variables" section
52-
of the Inspector. Remember, if you change the value here, it will override the
53-
value written in the script.
51+
node and you'll see the property now appears in the Inspector in a new section
52+
with the name of the script. Remember, if you change the value here, it will
53+
override the value written in the script.
5454

5555
.. warning::
5656

getting_started/first_2d_game/05.the_main_game_scene.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ to instance.
9999
}
100100

101101
Click the ``Main`` node and you will see the ``Mob Scene`` property in the Inspector
102-
under "Script Variables".
102+
under "Main.gd".
103103

104104
You can assign this property's value in two ways:
105105

452 Bytes
Loading

0 commit comments

Comments
 (0)