Basic 3D compass (with LFS)

This commit is contained in:
RedNicStone
2026-04-28 22:07:48 +02:00
parent e2185514af
commit f02e194cde
12 changed files with 221 additions and 0 deletions

11
scenes/node_3d.gd Normal file
View File

@@ -0,0 +1,11 @@
extends Node3D
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
self.rotate_y(delta * 0.1)