How do I show the loading screen on scene load?

I have a game that has a lot of scenes. I want it so that every time you change the scene, The loading screen (like what is at the first load-up of the game) to start, and end once the scene is loaded. (I want it like in skyrim, every time you enter/exit a house/city).

Hi @Kyle_3_1415,

You can load your loading scene additively, that’s it on top of the current scene. Keep it showing while on the background you are executing your scene change.

When the main game level has finished loading, hide/remove the loading screne.

This example is good on how to load scenes additively: Additive Loading Scenes | Learn PlayCanvas

1 Like