It’s been a looooong time since I’ve done anything with Unity but am feeling the itch to get back into it. Hopefully I’m not forgetting something obvious.
This is kind of an abstract question but it keeps burning in my mind so I figured I’d toss it out here and see what sort of response I get.
I want to attempt to build an online shooter. My question is that by nature, these types of games usually have a ‘core’ gameplay (characters, HUD, scoring, etc) that is played out on a variety of maps/levels.
For maps, I’m planning on building them out using terrains as the base, with models creating the detail. I’m reading that I’d use scenes for this?
Here’s the rub… I would need to have a lot of things that are always there, regardless of which map is being played… HUD stuff, core gameplay code, characters, etc. From my understanding, each scene is it’s own entity. I’m trying to avoid having to include all of these things in each map (so that if I change the HUD, I don’t have to change it in each scene).
So does anyone have any insight as to how multiple maps/levels/scenes are handled?