conforms file names to consistant standard

This commit is contained in:
2026-02-21 04:24:04 +11:00
parent 6b67dd9755
commit 5a4ad8633a
1991 changed files with 3836 additions and 7976 deletions

12
scripts/minimap_cam.gd Normal file
View File

@@ -0,0 +1,12 @@
class_name MinimapCamera3D
extends Camera3D
@export var anchor: Node3D
#@export var face_north: bool
func _process(_delta: float) -> void:
global_position = anchor.global_position + (Vector3.UP * 100)
if Data.preferences.fixed_minimap:
rotation.y = 0
else:
rotation.y = anchor.rotation.y