mirror of
https://github.com/Relintai/regression-test-project.git
synced 2024-11-14 10:27:53 +01:00
22 lines
483 B
GDScript
22 lines
483 B
GDScript
extends Node
|
|
|
|
const screen_size = Vector2(1024,600)
|
|
|
|
const RANGE : int = 5
|
|
|
|
var time_to_show : float = -1000.0
|
|
|
|
func _init():
|
|
for argument in OS.get_cmdline_args():
|
|
var rr : String = argument
|
|
if rr.find("tscn") != -1: # Ignore all tscn scenes/names
|
|
continue
|
|
time_to_show = argument.to_float()
|
|
print("Time set to: " + str(time_to_show))
|
|
break
|
|
|
|
func _process(delta : float) -> void:
|
|
time_to_show -= delta
|
|
if time_to_show < 0 && time_to_show > -500:
|
|
get_tree().quit()
|