.add(ResourceFactory.newByteArrayResource(moduleItem.getCompiledBinaryBytes()), ResourceType.PKG)
.end();
simulationFluent.newKnowledgeBase()
.addKnowledgePackages()
.end(World.ROOT, KnowledgeBase.class.getName());
simulationFluent.newStatefulKnowledgeSession().end();
for (SimulationStepModel step : path.getSteps().values()) {
simulationFluent.newStep(step.getDistanceMillis());
StatefulKnowledgeSessionSimFluent session = simulationFluent.getStatefulKnowledgeSession();
for (AbstractCommandModel command : step.getCommands()) {
addCommand(session, command);