Loading screen after Splash Screen

Hello,
I have a splash screen that shows two logos and after that I have a loading time of like 7-10 seconds. While I wait, how can I add a loading screen like a simple logo that says “Loading”?

Depends a bit on where the loading is happening exactly. Unity should keep showing the splash screen until the first scene is loaded but if you then do additional loading/instantiating, that isn’t covered.

You can add a very simple first scene that just shows the loading screen and then asynchronously load the next scene(s) in the background. This potentially also allows you to keep showing the loading screen while the scenes are being activated in the background and you wait for the frame rate to stabilize.

1 Like

Yeah I did exactly that, added a scene that is loading the game Async and showing a loading image while waiting, with a progress bar. Thanks for the reply!