Hi, I created a loading scene for my game, but when I start it the game is black for 10 seconds, so it loads the game all at once (the loading scene takes half a second, then the game starts immediately). how do I start the loading scene immediately and then load the rest of the game during the loading scene? Thanks for your help.
Are you using LoadSceneAsync? I believe by default it will do what you want, so maybe you have one very small loading scene that you move to first, or a loading UI that you create in your current scene, and then you use LoadSceneAsync on your large scene so that Unity will begin loading it in the background.
That method returns an object AsyncOperation which has the field allowSceneActivation
by default it is set to true so as soon as your big scene has finished loading in the background, unity will activate it, if you want to add some extra fades or things you can set it to false and jazz it up.