nc5432 69008d0046 More animations
- Implemented firebolt animation
- Started on icy wind animation
- Added animation to health bars
- Improved the animation system more
- Cleaned up some code
2024-05-14 21:40:18 -04:00

14 lines
265 B
GDScript

extends GPUParticles2D
@export var size: Vector3
# Called when the node enters the scene tree for the first time.
func _ready():
process_material.emission_box_extents = size
func _on_mouse_entered():
emitting = true
func _on_mouse_exited():
emitting = false