Added cards for objects + MISC

- Added flame animation
- Added cards for objects
- Added new background animation
- Added placeable walls

Co-Authored-By: deranonymos <deranonymos@users.noreply.github.com>
This commit is contained in:
2020-04-20 15:54:40 +02:00
parent 32e73895dc
commit fafd1956c6
390 changed files with 4727 additions and 2117 deletions

View File

@@ -0,0 +1,15 @@
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()