Skip to content

Commit 24fb0e2

Browse files
kylestarrskyace65
andauthored
Removing one comment hash for style
Co-authored-by: Matthew <[email protected]>
1 parent af66da0 commit 24fb0e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

getting_started/first_2d_game/03.coding_the_player.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ movement. Let's place this code at the end of the ``_process()`` function:
275275
if velocity.x != 0:
276276
$AnimatedSprite2D.animation = "walk"
277277
$AnimatedSprite2D.flip_v = false
278-
## See the note below about the following boolean assignment.
278+
# See the note below about the following boolean assignment.
279279
$AnimatedSprite2D.flip_h = velocity.x < 0
280280
elif velocity.y != 0:
281281
$AnimatedSprite2D.animation = "up"

0 commit comments

Comments
 (0)