How to Creating a Custom Loading Screen in BabylonJS

how to know if all meshes are loaded in the scene
we need to show a Loader until all meshes are loaded

Did you check Creating Custom Loading Screens | Babylon.js Documentation ?

5 Likes

locket
we need to show a Loader until all meshes are loaded

I use ‘Promise.all’ to make sure all meshes are loaded and it works fine. For the rest, @labris gave you a link that worked for me. There’s also a small video that can help with this understanding. I recommend you watch it.

1 Like

Example - https://www.babylonjs-playground.com/#5Y2GIC#120

2 Likes

Thank you labris
i will try this