7 lines
95 B
GDScript

extends Node3D
@export var speed: float = 1.0
func _process(delta):
rotate_y(speed * delta)