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