I'm attempting to build a geographically large gameworld, along the lines of 16 bit Zelda. Some areas of the world will be top-down (think Zelda), others side-scrolling (think Super Mario). Fairly simple gameplay, but it's a non-linear world that you can go back and forth between any part of. Every 'screen' of the gameworld is roughly one computer screen in size. My plan is that once I've got the basic structure laid out, I'll plug in basic metroidvania / zelda packs from the Asset Store and focus on worldbuilding and get a 'rough draft' of the world built out, then come back and tweak/improve the gameplay down the line.
My current plan is to use Photon Cloud to make it so that you've got realtime multiplayer interaction with whoever's on the same screen as you. Not sure if that's relevant or not for the question I'm asking.
What I'm wondering is -- should every screen of my game world be its own layout? Without knowing C2 well, my natural inclination is to say 'yes', especially since the gameplay of any given screen (sidescrolling vs top-down) may be different from the ones adjacent to it, and with each screen having its own NPCs, enemies, interactions, etc., it might get very crowded very quickly to have an entire game's worth of things in one single layout.
But I'm not sure if that's the 'correct' or 'proper' way to structure things in C2.
Thoughts/advice?