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