mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2026-01-06 16:00:08 +01:00
7 lines
150 B
GDScript
7 lines
150 B
GDScript
extends DirectionalLight3D
|
|
|
|
|
|
func _process(delta):
|
|
rotate_object_local(Vector3.RIGHT, 0.025 * delta)
|
|
#rotate_object_local(Vector3.FORWARD, randf())
|