We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af66da0 commit 24fb0e2Copy full SHA for 24fb0e2
getting_started/first_2d_game/03.coding_the_player.rst
@@ -275,7 +275,7 @@ movement. Let's place this code at the end of the ``_process()`` function:
275
if velocity.x != 0:
276
$AnimatedSprite2D.animation = "walk"
277
$AnimatedSprite2D.flip_v = false
278
- ## See the note below about the following boolean assignment.
+ # See the note below about the following boolean assignment.
279
$AnimatedSprite2D.flip_h = velocity.x < 0
280
elif velocity.y != 0:
281
$AnimatedSprite2D.animation = "up"
0 commit comments