Example #1
0
 void UpdatePersistentParameters()
 {
     // Update values to use during timewarp
     // Update thrust calculation
     engine.CalculateThrust();
     // Get Isp
     IspPersistent = engine.realIsp;
     // Get throttle
     ThrottlePersistent = vessel.ctrlState.mainThrottle;
     // Get final thrust
     ThrustPersistent = engine.finalThrust;
 }