Browse Source

Allow turn before round starts

DricomDragon 5 years ago
parent
commit
14b5287fc8
2 changed files with 6 additions and 3 deletions
  1. 1 1
      CharTween.gd
  2. 5 2
      Player.gd

+ 1 - 1
CharTween.gd

@@ -7,7 +7,7 @@ func _ready():
 	pass # Replace with function body.
 
 func connect_into(o):
-	connect("tween_all_completed", o, "_on_tween_completed")
+	connect("tween_completed", o, "_on_tween_completed")
 	pass
 
 func move_char(c, t_pos):

+ 5 - 2
Player.gd

@@ -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()