Preliminary multiplayer capability (origin stuff disabled for now)

This commit is contained in:
Patrick Marsee 2025-09-24 18:08:12 -04:00
parent 73baafbd6c
commit f0c4263675
18 changed files with 704 additions and 99 deletions

View file

@ -9,7 +9,8 @@ extends Control
@onready var relative_velocity_label := $RelativeVelocityLabel as Label
func _process(_delta: float) -> void:
tas_label.text = "TAS: %s" % source.m_tas
aoa_label.text = "AOA: %s" % rad_to_deg(source.m_aoa)
sideslip_label.text = "Sideslip: %s" % rad_to_deg(source.m_sideslip)
relative_velocity_label.text = "V: %s" % source.m_relative_velocity
if (source):
tas_label.text = "TAS: %s" % source.m_tas
aoa_label.text = "AOA: %s" % rad_to_deg(source.m_aoa)
sideslip_label.text = "Sideslip: %s" % rad_to_deg(source.m_sideslip)
relative_velocity_label.text = "V: %s" % source.m_relative_velocity