drehendes zahnrad

This commit is contained in:
PfandBoss
2022-12-11 10:57:57 +01:00
parent edb53171d0
commit e4b3835ec3
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)