blob: b9dbdef814413916e5bb90398a8b2e04e9314d1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
extends Microgame
# Called when the node enters the scene tree for the first time.
func _microgame_ready() -> void:
$Player.died.connect(_on_died)
func _on_died():
finished.emit(false)
$Lose.play()
|