road-rage-tank/lifetime.gd
2026-01-29 14:23:33 -05:00

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()