regression-test-project/Rendering/Lights3D/DirectionalLight3D.gd
2020-12-29 08:29:25 +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)