14 lines
224 B
GDScript
14 lines
224 B
GDScript
extends "res://maps/map.gd"
|
|
|
|
|
|
|
|
func _on_Boss1_died():
|
|
Game.change_map(load("res://maps/level_select.tscn"))
|
|
|
|
|
|
func _on_Boss1_entered_phase(phase):
|
|
match phase:
|
|
2:
|
|
$DelayedArrow2.start()
|
|
3:
|
|
$DelayedArrow3.start()
|