|
@@ -45,15 +45,13 @@ var turn_right_action:String
|
|
|
|
|
|
var grid:TileMap
|
|
|
|
|
|
-onready var tween = $Tween
|
|
|
+onready var mover = $Mover
|
|
|
|
|
|
|
|
|
func _ready():
|
|
|
assert(turn_left_action)
|
|
|
assert(turn_right_action)
|
|
|
|
|
|
- tween.connect_into(self)
|
|
|
-
|
|
|
|
|
|
func _unhandled_input(event):
|
|
|
if event.is_pressed():
|
|
@@ -80,7 +78,7 @@ func _on_arena_removed():
|
|
|
emit_signal("arena_removed")
|
|
|
|
|
|
|
|
|
-func _on_tween_completed(_o, key):
|
|
|
+func _on_move_completed(_o, key):
|
|
|
if (key == ":position"):
|
|
|
move()
|
|
|
|
|
@@ -103,9 +101,9 @@ func spawn(newGrid, newPosition, newOrientation):
|
|
|
apply_turn()
|
|
|
|
|
|
# Animate spawning
|
|
|
- tween.rotate_char_during(self, rotation_degrees, newOrientation, LEVEL_SPAWN_DURATION)
|
|
|
- tween.move_char_during(self, newPosition, LEVEL_SPAWN_DURATION)
|
|
|
- tween.start()
|
|
|
+ mover.rotate_char_during(self, rotation_degrees, newOrientation, LEVEL_SPAWN_DURATION)
|
|
|
+ mover.move_char_during(self, newPosition, LEVEL_SPAWN_DURATION)
|
|
|
+ mover.start()
|
|
|
|
|
|
|
|
|
func generate_wall():
|
|
@@ -129,8 +127,8 @@ func prepare_turn(left_or_right:int):
|
|
|
|
|
|
var aim_angle = current_angle + 90 * left_or_right
|
|
|
|
|
|
- tween.rotate_char(self, current_angle, aim_angle)
|
|
|
- tween.start()
|
|
|
+ mover.rotate_char(self, current_angle, aim_angle)
|
|
|
+ mover.start()
|
|
|
|
|
|
|
|
|
func can_turn():
|
|
@@ -179,11 +177,11 @@ func apply_wall_boost():
|
|
|
if has_block_on(Side.RIGHT):
|
|
|
n += 1
|
|
|
|
|
|
- tween.set_boost(n)
|
|
|
+ mover.set_boost(n)
|
|
|
|
|
|
|
|
|
func end_wall_boost():
|
|
|
- tween.set_boost(0)
|
|
|
+ mover.set_boost(0)
|
|
|
|
|
|
|
|
|
func move():
|
|
@@ -211,8 +209,8 @@ func go_forward():
|
|
|
posiy += diry
|
|
|
|
|
|
target_pos = Vector2(posix * cell_size + cell_half_size, posiy * cell_size + cell_half_size)
|
|
|
- tween.move_char(self, target_pos)
|
|
|
- tween.start()
|
|
|
+ mover.move_char(self, target_pos)
|
|
|
+ mover.start()
|
|
|
|
|
|
|
|
|
func has_block_on(left_or_right:int):
|