Fix file format checks

This commit is contained in:
Hugo Locurcio
2023-05-10 02:57:43 +02:00
parent cdffdc025f
commit bfcd81aa85

View File

@@ -5,7 +5,6 @@ const MOTION_SPEED = 160 # Pixels/second.
var last_direction = Vector2(1, 0)
var anim_directions = {
"idle": [ # list of [animation name, horizontal flip]
["side_right_idle", false],
["45front_right_idle", false],
@@ -27,7 +26,6 @@ var anim_directions = {
["back_walk", false],
["45back_right_walk", false],
],
}