mirror of
https://github.com/PfandBoss/SemesterGameJam2022.git
synced 2025-11-12 20:26:13 +01:00
14 lines
120 B
GDScript
14 lines
120 B
GDScript
extends Node3D
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var speed := 2.0
|
|
|
|
func _process(delta):
|
|
rotate(Vector3(0,1,0),delta * speed)
|
|
print(rotation.y)
|