regression-test-project/Rendering/Lights3D/DirectionalLight.gd
2021-03-27 15:53:32 +01:00

11 lines
186 B
GDScript

extends DirectionalLight3D
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)