1
0
Fork 0
Personalized headpat mod for SnekStudio.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
161 B

3 weeks ago
extends BoneAttachment3D
@export var lifetime: float = 12.0
func _physics_process(delta: float) -> void:
lifetime -= delta
if lifetime < 0.0:
queue_free()