コード例 #1
0
 void LateUpdate()
 {
     if (_airSpeedGUI != null)
     {
         _airSpeedGUI.ChangeSurfVelocity();
     }
     else if (FlightUIController.fetch != null)
     {
         _airSpeedGUI = new AirspeedSettingsGUI(_vessel);
     }
 }
コード例 #2
0
 void LateUpdate()
 {
     OnGUIAppLauncherReady();
     if (_airSpeedGUI != null)
     {
         _airSpeedGUI.ChangeSurfVelocity();
     }
     else if (_vessel != null)
     {
         _airSpeedGUI = new AirspeedSettingsGUI(_vessel);
     }
 }