Setup basic scene to move the cube to last data received

This commit is contained in:
Marek S. Łukasiewicz 2025-01-30 17:11:10 +01:00
parent 73fed102c2
commit 372468b5a1
6 changed files with 59 additions and 4 deletions

6
project/aircraft.gd Normal file
View file

@ -0,0 +1,6 @@
extends Node3D
@export var connector: MarshConnector
func _process(_delta: float) -> void:
transform = connector.get_aircraft()