nc5432 256e070818 Spells, fonts, and animations
- Fixed bugs with animations
- Added spell defenses
- Experimented with alternate fonts
2024-05-15 22:42:15 -04:00

9 lines
194 B
GDScript

extends AnimationBase
@onready var particles: GPUParticles2D = $GPUParticles2D
func die():
particles.emitting = false
await get_tree().create_timer(particles.lifetime).timeout
queue_free()