Skip to content

Commit 83bc0c5

Browse files
authored
"as long" -> "as long as" in 03.player_movement_code.rst
Changed "as long it is not on or collides" to "as long as it is not on or colliding".
1 parent 9be7839 commit 83bc0c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

getting_started/first_3d_game/03.player_movement_code.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ we apply gravity to the ``Player`` only while it is in the air.
225225

226226
For the vertical velocity, we subtract the fall acceleration multiplied by the
227227
delta time every frame.
228-
This line of code will cause our character to fall in every frame, as long it is not on or collides with the floor.
228+
This line of code will cause our character to fall in every frame, as long as it is not on or colliding with the floor.
229229

230230
The physics engine can only detect interactions with walls, the floor, or other
231231
bodies during a given frame if movement and collisions happen. We will use this

0 commit comments

Comments
 (0)