void LateUpdate() { if (_airSpeedGUI != null) { _airSpeedGUI.ChangeSurfVelocity(); } else if (FlightUIController.fetch != null) { _airSpeedGUI = new AirspeedSettingsGUI(_vessel); } }
void LateUpdate() { OnGUIAppLauncherReady(); if (_airSpeedGUI != null) { _airSpeedGUI.ChangeSurfVelocity(); } else if (_vessel != null) { _airSpeedGUI = new AirspeedSettingsGUI(_vessel); } }