This commit is contained in:
Arthur
2022-12-11 11:01:10 +01:00
2 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
extends Node3D
var speed := 2.0
func _process(delta):
rotate(Vector3(0,1,0),delta * speed)
print(rotation.y)