mirror of
https://github.com/creyD/ludum_dare_46.git
synced 2026-06-13 05:52:24 +02:00
9 lines
217 B
GDScript
9 lines
217 B
GDScript
extends Panel
|
|
|
|
func _on_SlimeBoss_state_changed(new_state_name):
|
|
$VBoxContainer/State.text = new_state_name
|
|
|
|
|
|
func _on_SlimeBoss_phase_changed(new_phase_name):
|
|
$VBoxContainer/Phase.text = "Phase: " + new_phase_name
|