mirror of
https://github.com/CrispyPin/ovr-utils.git
synced 2025-04-04 12:13:59 +02:00
10 lines
220 B
GDScript
10 lines
220 B
GDScript
extends Spatial
|
|
|
|
var countdown = 2
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
func _process(delta):
|
|
countdown = countdown - 1
|
|
if countdown == 0:
|
|
visible = false
|
|
set_process(false)
|