Przeglądaj źródła

Merge pull request #1630 from FeralBytes/patch-4

Ensure GRAVITY is spelled out throughout Tutorial
Nathan Lovato 7 lat temu
rodzic
commit
d3e0b40a6f
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      tutorials/3d/fps_tutorial/part_one.rst

+ 1 - 1
tutorials/3d/fps_tutorial/part_one.rst

@@ -259,7 +259,7 @@ First, we define some class variables to dictate how our player will move about
 
 Let's go through each of the class variables:
 
-- ``GRAV``: How strong gravity pulls us down.
+- ``GRAVITY``: How strong gravity pulls us down.
 - ``vel``: Our :ref:`KinematicBody <class_KinematicBody>`'s velocity.
 - ``MAX_SPEED``: The fastest speed we can reach. Once we hit this speed, we will not go any faster.
 - ``JUMP_SPEED``: How high we can jump.