Hello.
The size of my scene is about from 150mb to 200mb and you can give or take.
What I want to do is give better user experience by which a user don’t have to wait for a long time to load all the scene.
To do that, I set up several steps to actually visit and load the scene.
While the user goes through several pages, it loads all the assets and run it in background.
My first try is set ‘display’ as none for the wrapping div.
The second try is locating the wapping div to the outside of the screen( position: absolute, top:-100%, left:-100%)
In both scenario, it shows little enhancement in loading performance, but not that dramatically enhanced.
What I assume is that as long as it’s not visible to the screen it is not rendered.
If my guess is true,
I just wonder if there is a way making it renders by force even though it’s not visible?