mirror of
https://github.com/kristoferssolo/FuncIt.git
synced 2025-10-21 19:30:35 +00:00
10 lines
98 B
GDScript
10 lines
98 B
GDScript
extends Node2D
|
|
|
|
var time = 0
|
|
|
|
|
|
func _process(delta):
|
|
time += delta
|
|
if time > 17:
|
|
queue_free()
|