The beginning of public history

This commit is contained in:
2019-09-16 02:07:41 -04:00
commit 64a2ffbc89
1104 changed files with 7534 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
extends AnimatedSprite
func _ready():
play("spawn")
connect("animation_finished", self, "on_animation_finished")
func on_animation_finished():
if(animation == "spawn"):
play("destroy")
else:
get_parent().queue_free()