8 lines
146 B
GDScript
8 lines
146 B
GDScript
extends Node
|
|
|
|
@export var duration := 10.
|
|
|
|
func _process(delta: float) -> void:
|
|
duration -= delta
|
|
if duration <= 0:
|
|
get_parent().queue_free()
|