initial commit

This commit is contained in:
2026-07-04 18:22:23 -06:00
commit 55522fc6fc
272 changed files with 12391 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
extends Camera3D
var signals: SignalsNode
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
signals = get_node("/root/Main/Signals")
signals.position_updated.connect(_on_position_updated)
func _on_position_updated(sensor_ip: String, physics_position):
return
print(physics_position)
look_at(Vector3(physics_position.x, physics_position.y, physics_position.z))