|
@@ -59,11 +59,13 @@ func _unhandled_input(event):
|
|
|
if event.is_pressed():
|
|
|
if event.is_action(turn_left_action):
|
|
|
tween.rotate_char(self, rotation_degrees - 90)
|
|
|
+ tween.start()
|
|
|
|
|
|
dire_delta = Side.LEFT
|
|
|
get_tree().set_input_as_handled()
|
|
|
elif event.is_action(turn_right_action):
|
|
|
tween.rotate_char(self, rotation_degrees + 90)
|
|
|
+ tween.start()
|
|
|
|
|
|
dire_delta = Side.RIGHT
|
|
|
get_tree().set_input_as_handled()
|
|
@@ -71,8 +73,9 @@ func _unhandled_input(event):
|
|
|
func _on_game_start():
|
|
|
move()
|
|
|
|
|
|
-func _on_tween_completed():
|
|
|
- move()
|
|
|
+func _on_tween_completed(_o, key):
|
|
|
+ if (key == ":position"):
|
|
|
+ move()
|
|
|
|
|
|
func _on_crash(body):
|
|
|
die()
|