mirror of
https://github.com/creyD/ludum_dare_46.git
synced 2026-06-12 05:22:23 +02:00
- Added clap animation for bear trap - Added cards in menu bar - Replaced old bear_trap icon with new one
16 lines
323 B
GDScript
16 lines
323 B
GDScript
extends Node2D
|
|
|
|
func _on_Hurtbox_area_entered(area):
|
|
$AnimatedSprite.play("clap")
|
|
|
|
|
|
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()
|