I broke Godot and I don't wanna restart the whole project :( It worked ten minutes ago, I renamed Sprite to Player Sprite and forgot to change it in my script, crash of course, so I changed it in my script, still crash, I reversed everything as it was before and it's still crashing
if velocity.y < 0 and not is_on_floor():
$Sprite.play("Jump")
elif velocity.y > 0 and not is_on_floor():
$Sprite.play("Fall")
Breakpoint at this line: $Sprite.play("Fall") since Sprite is no longer found. :|
