Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 0b4405c7 authored by Markus QUARITSCH's avatar Markus QUARITSCH
Browse files

invoke idle controler only if no dry-run (otherwise, already calculated values will be overwritten)

parent e9f6bd27
No related branches found
Tags Release/v3.3.8.2052
No related merge requests found
......@@ -107,7 +107,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
return HandleClutchOpen(absTime, dt, outTorque, outAngularVelocity, false);
}
if (IdleController != null) {
if (IdleController != null && !dryRun) {
IdleController.Reset();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment