10 lines
167 B
GDScript
10 lines
167 B
GDScript
extends CPUParticles2D
|
|
|
|
func _ready() -> void:
|
|
emitting = true
|
|
|
|
func set_from_player(value):
|
|
$Hitbox.from_player = value
|
|
|
|
func _on_finished() -> void:
|
|
queue_free()
|