Browse Source

Animate spawning transition

DricomDragon 4 years ago
parent
commit
cdd8cfb909
2 changed files with 13 additions and 9 deletions
  1. 1 5
      Game.gd
  2. 12 4
      Player.gd

+ 1 - 5
Game.gd

@@ -78,11 +78,7 @@ func create_game():
 	var p = get_tree().get_nodes_in_group("players")
 
 	for k in p.size():
-		# TODO : Put arguments in callback
-		p[k].grid = levelCurrentNode
-		p[k].position = spawners[k].position
-		p[k].rotation = spawners[k].rotation
-		p[k]._on_spawn()
+		p[k].spawn(levelCurrentNode, spawners[k].position, spawners[k].rotation_degrees)
 
 	# Delay start
 	timer.start()

+ 12 - 4
Player.gd

@@ -54,13 +54,21 @@ func _unhandled_input(event):
 			prepare_turn(Side.RIGHT)
 			get_tree().set_input_as_handled()
 
-func _on_spawn():
+func spawn(newGrid, newPosition, newOrientation):
+	# Update arena
+	grid = newGrid
+
 	# Adjust spawn situation
-	posix = int (position.x / cell_size)
-	posiy = int (position.y / cell_size)
-	dire = int((rotation_degrees + 45) / 90)
+	posix = int (newPosition.x / cell_size)
+	posiy = int (newPosition.y / cell_size)
+	dire = int((newOrientation + 45) / 90)
 	apply_turn()
 
+	# Animate spawning
+	tween.rotate_char(self, rotation_degrees, newOrientation)
+	tween.move_char(self, newPosition)
+	tween.start()
+
 func _on_round_start():
 	assert(grid)
 	spring()