Adds first worldmap scene

This commit is contained in:
Mark Hoekveen
2020-03-03 18:14:57 +01:00
parent d65d31abce
commit 646f76af8b
54 changed files with 11235 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
extends OmniLight
var time: float = 0.0
func _ready():
pass
func _process(delta):
time += delta
self.omni_range = 10*sin(time*3.14)+sin(8*time*3.14)+4*sin(3*time*3.14)+20
pass