How to do this kind of loading screen

Hi,

I want to know how you can do a loading screen like the one on this project:

https://3dmodule.prod.nissan.eu/?car=leaf&target=pes&locale=ES_es&context=pes

I noticed it starts with a short Loading text, then it shows a scene with an animation of the vehicle outline and it looks like that’s the moment when the real loading starts. How can I do something like this in playcanvas?

1 Like

Yes, should be possible.
One solution is to create a “loading” scene that will then load all the additional contents.
Also, you should flag most of your assets to don’t preload, so that the first loading message “Loading…” last as few as possible.
Then you can load the additional assets by script.

Here is a project sample of loading assets at runtime: https://developer.playcanvas.com/en/tutorials/load-multiple-assets-at-runtime/