mirror of
https://github.com/creyD/ludum_dare_46.git
synced 2026-06-12 13:32:23 +02:00
16 lines
376 B
GDScript
16 lines
376 B
GDScript
extends StaticBody2D
|
|
|
|
|
|
func _sound_finished():
|
|
SoundControler.pub_play_effect("res://Objects/Bonfire/Bonfire.wav", 3)
|
|
|
|
|
|
func _ready():
|
|
SoundControler.pub_play_effect("res://Objects/Bonfire/Bonfire.wav", 3)
|
|
SoundControler._effect[3].volume_db = -20
|
|
SoundControler._effect[3].connect("finished", self, "_sound_finished")
|
|
|
|
|
|
func _on_Hurtbox_area_entered(area):
|
|
queue_free()
|