13 lines
220 B
GDScript
13 lines
220 B
GDScript
extends "res://maps/map.gd"
|
|
|
|
func _ready():
|
|
Game.current_sector = Vector2.ZERO
|
|
|
|
func _on_2600_entered_phase(phase):
|
|
match phase:
|
|
2:
|
|
$DelayedArrow2.start()
|
|
3:
|
|
$DelayedArrow3.start()
|
|
4:
|
|
$ExitTimer.start()
|