mirror of
https://github.com/creyD/ludum_dare_46.git
synced 2026-06-13 05:52:24 +02:00
18 lines
401 B
GDScript
18 lines
401 B
GDScript
extends Node2D
|
|
|
|
|
|
func _on_Hurtbox_area_entered(area):
|
|
$AnimatedSprite.play("clap")
|
|
SoundControler.pub_play_effect("res://Objects/Traps/Bear/Barenfalle.wav",3)
|
|
|
|
|
|
func _ready():
|
|
$AnimatedSprite.play("place")
|
|
|
|
|
|
func _on_AnimatedSprite_animation_finished():
|
|
if $AnimatedSprite.get_animation() == "place":
|
|
$AnimatedSprite.play("still")
|
|
elif $AnimatedSprite.get_animation() == "clap":
|
|
queue_free()
|