mirror of
https://github.com/Relintai/regression-test-project.git
synced 2024-11-14 10:27:53 +01:00
11 lines
212 B
GDScript3
11 lines
212 B
GDScript3
|
extends SpotLight
|
||
|
|
||
|
var speed = 0.3
|
||
|
var curr = 0
|
||
|
|
||
|
|
||
|
func _process(delta):
|
||
|
curr += delta * speed
|
||
|
|
||
|
look_at_from_position(Vector3(cos(curr) * 3, sin(curr * curr) * 3, sin(curr) * 3), Vector3.ZERO, Vector3(0, 1, 0))
|