Added simple Light and Physics scenes (#4)

This commit is contained in:
Rafał Mikrut
2020-11-07 17:36:23 +01:00
committed by GitHub
parent 696f3d3d3d
commit a96aed257d
31 changed files with 840 additions and 65 deletions

View File

@@ -1,21 +1,23 @@
extends Node
const screen_size = Vector2(1024,600)
const screen_size = Vector2(1024, 600)
const RANGE : int = 5
const RANGE: int = 5
var time_to_show: float = -1000.0
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
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:
func _process(delta: float) -> void:
time_to_show -= delta
if time_to_show < 0 && time_to_show > -500:
get_tree().quit()