mirror of
https://github.com/creyD/ludum_dare_46.git
synced 2026-06-11 21:22:22 +02:00
10 lines
238 B
GDScript
10 lines
238 B
GDScript
extends "res://Boss/SlimeBoss/States/BossState.gd"
|
|
|
|
func enter():
|
|
SoundControler.pub_play_effect("res://Player/Sounds/hero_laugh1.ogg",10)
|
|
animation_player.play("Die")
|
|
|
|
func _on_animation_finished(anim_name):
|
|
emit_signal("finished")
|
|
|