Splash screen while loading game

Hi,

I know that some game engines have an special/optimized way to load game assets, scenes etc during game loading.
Some load the main scene, hid it and display a splash screen to display a loading bar regarding assets, scenes loading time.
Some others prefer to display a splash screen loading the main scene, assets, other scenes and at the end make visible the main scene.

What is the best way for defold engine ?
thx

Create a collection for the loading screen and set it as your main collection. Add a script to it that loads another collection asynchronously (using collectionproxy). Once finished loading, you disable the loader collection and enable the other.

2 Likes