i'm currently using https://docs.godotengine.org/en/stable/getting_started/first_2d_game/03.coding_the_player.html, and i'm at
$AnimatedSprite2D.animation = "walk"
$AnimatedSprite2D.flip_v = false
# See the note below about the following boolean assignment.
$AnimatedSprite2D.flip_h = velocity.x < 0
elif velocity.y != 0:
$AnimatedSprite2D.animation = "up"
$AnimatedSprite2D.flip_v = velocity.y > 0 ```
but here's the thing, it presents the attached image with errors.
it's worked fine up until then, here are my sprites