mirror of
https://github.com/Relintai/regression-test-project.git
synced 2024-11-14 10:27:53 +01:00
11 lines
184 B
GDScript
11 lines
184 B
GDScript
extends DirectionalLight
|
|
|
|
var speed = 1.2
|
|
var curr = 0
|
|
|
|
|
|
func _process(delta):
|
|
curr += delta * speed
|
|
|
|
rotation = Vector3(sin(curr) * speed, cos(curr) * speed, sin(8 * curr) * speed)
|