Browse Source

Full Rect option in Background section

Corrected the "Full Rect" option location in Background section because it was wrong in Godot 4.
kastaldi 2 years ago
parent
commit
365a9d0f26
1 changed files with 1 additions and 1 deletions
  1. 1 1
      getting_started/first_2d_game/07.finishing-up.rst

+ 1 - 1
getting_started/first_2d_game/07.finishing-up.rst

@@ -15,7 +15,7 @@ The default gray background is not very appealing, so let's change its color.
 One way to do this is to use a :ref:`ColorRect <class_ColorRect>` node. Make it
 One way to do this is to use a :ref:`ColorRect <class_ColorRect>` node. Make it
 the first node under ``Main`` so that it will be drawn behind the other nodes.
 the first node under ``Main`` so that it will be drawn behind the other nodes.
 ``ColorRect`` only has one property: ``Color``. Choose a color you like and
 ``ColorRect`` only has one property: ``Color``. Choose a color you like and
-select "Layout" -> "Full Rect" so that it covers the screen.
+select "Layout" -> "Anchors Preset" -> "Full Rect" so that it covers the screen.
 
 
 You could also add a background image, if you have one, by using a
 You could also add a background image, if you have one, by using a
 ``TextureRect`` node instead.
 ``TextureRect`` node instead.