Hi, I am trying to create and delete multiple scenes. I have 3 to 5 scenes in memory at one time but only one is being rendered. I can change scenes or delete them. When I delete a scene I do the following steps:
Remove pointerObservable of the current scene
detach camera control
dispose gizmoManager utilitylayer(which I create manually when creating gizmo manager)
dispose the scene
After the above process I assign a scene which I had already created before to render.
Then I do the following steps:
add pointerObservable to the current scene
attach camera control
create a new gizmoManger with new utilitylayer for the current scene
I am trying to reproduce the error in this playground. This can produce the same error but the obvious issue is that I am trying to load a scene which is already disposed. https://playground.babylonjs.com/#MXCRPS#173
https://playground.babylonjs.com/#MXCRPS#175
In the above scene first press key ā2ā to shift to scene 2. Than press key ā3ā to shift to scene 3. After than press key ādā to dispose scene 3 and shift to scene 1. Now after that when you press key ā2ā to shift to scene 2 it throughs that error.
If you dispose the latest scene created, then lastCreatedScene is null. lastCreatedScene is used to create the layer for the gizmomanager hence the crash.
To fix your issue, more a workaround, I suggest to create a dummy scene after scene1,2,3 are created. So lastCreatedScene is never one you will delete.
Thereās some code all over the place that is taking EngineStore._LastCreatedScene (or EngineStore.LastCreatedScene which is the same) if you donāt provide a scene yourself.
If you create scene1 and scene2 then dispose scene2, then EngineStore._LastCreatedScene will be reset to null and none of the code that is using EngineStore._LastCreatedScene will work anymore whereas we should have set EngineStore._LastCreatedScene to scene1.
After some discussion with @sebavan, we think this PR should fix the problem:
However, you need to pass a utility layer renderer based on your scene for the keepDepthUtilityLayer parameter too. So, this PG should work after the PR is merged: