mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2025-12-15 13:00:07 +01:00
8 lines
134 B
GDScript
8 lines
134 B
GDScript
extends Sprite3D
|
|
|
|
@export var speed_deg: float = 90.0
|
|
|
|
|
|
func _process(delta: float) -> void:
|
|
rotate_y(deg_to_rad(speed_deg * delta))
|