Game with multiple levels and each level with multiple maps
I'm creating my first game on Unity and this game has around 5 maps that represents the house where the player lives. I need to make it possible for the player to move around the maps without change the level. Like....
Level 1: I can visit the bedroom, the living room and the corridor.
Level 2: I can visit the bedroom, the living room, the corridor and the kitchen.
Level 3: I can visit the bedroom, the living room, the corridor and the attic.
Level 4: I can visit the bedroom and the attic.
How do I make so that the player can move between those maps without changing the level? Just changing the level when I want to. What is the simplest way to do that?
Comment