mirror of
https://codeberg.org/ProgramSnail/konkr_game_3d.git
synced 2025-12-06 06:38:47 +00:00
8 lines
116 B
GDScript
8 lines
116 B
GDScript
extends Particles
|
|
|
|
func _ready():
|
|
emitting = true
|
|
|
|
func _physics_process(_delta):
|
|
if not emitting:
|
|
queue_free()
|