Esempio n. 1
0
 private void OnBurnClick()
 {
     if (!Double.IsNaN(DeltaV))
     {
         mFlightComputer.Enqueue(BurnCommand.WithDeltaV(mThrottle, DeltaV));
     }
     else
     {
         mFlightComputer.Enqueue(BurnCommand.WithDuration(mThrottle, Duration));
     }
 }
Esempio n. 2
0
 private void OnBurnClick()
 {
     mFlightComputer.Enqueue(BurnCommand.WithDuration(mThrottle, Duration));
 }