Need help to make the right decision in game structure

Hi all!

While i am making a social game by Unity, i cant make a decision about how to make the properly structure in my game.
In game there are 10 stages for player (home, street, girlfriend house…) with the same interface.
Do i need to make each stage in different scene? Or it is better to make all this content in one scene with many many many layers or objects wich will switch between each other?

thanks for help!!! :roll_eyes:

Different Scenes. Having all the objects in one scene would slow down loading times, as well it might have a performance impact. And there is no reason not to do it.

Great Thanks!