Search code examples
unity-game-enginescenesimultaneous

Having multiple unity scenes open simultaneously


I've been developing a board-style game in Unity3D. The main scene is the board, and has the data about each player and the current (randomly-generated) board stored within it.

I intend to add minigames into the game, for example when landing on a particular space on the board. Naturally, I would like to code the minigame in a separate scene. Is there a way I can do this without losing the instance of the current scene, so that the current scene's state is maintained?

Thanks in advance :)


Solution

  • Short answer: no, but there may be another way to do what you want.

    A basic call to Application.LoadLevel call will destroy the current scene before loading the next one. This isn't what you want.

    If your minigame is relatively simple, you could use Instantiate to bring in a prefab and spawn it far away from the rest of your scene. You can even use scripts to switch to another camera, toggle player controls and other interactions in the scene, and so on. Once the minigame is done, you can destroy or disable whatever you brought in, and re-enable whatever needs to be turned on in the main scene.

    You could create a separate scene and call Application.LoadLevelAdditive to load that scene without destroying the current one. As above, you can then use scripts to manage which cameras and scene behaviors are active.

    If you're careful, you don't really need two separate scenes. It may be enough to "fake" a scene switch.