hi
I try to use onBeforeStepObservable so I pass two more option to engine(http://doc.babylonjs.com/tutorials/animations#deterministic-lockstep)
var engine = new BABYLON.Engine(canvas, true, {
deterministicLockstep: true,
lockstepMaxSteps: 4
});
and it occurs an error like below at scene.render()
engine.runRenderLoop(() => {
scene.render();
});
If I set the lockstepMaxSteps to 1, then it's alright.
This issue seems not happen to the example on PG(https://www.babylonjs-playground.com/#DU4FPJ#3)
any hint what could be the problem?