Hi, I’m relatively new to Unity but I am a very fast learner. I am currently experimenting with all kinds off stuff, mainly 2D, and right now I’m trying to create a top-down 2d shooter with a tilemap, much like Crimsonland (if anyone still remembers that game). What I am trying to achieve though, is a kind of multi-level map to walk around. Or maybe multi-story would be more clarified for understanding.
So I have the main level, say 128x128 tiles, and then I want to have a stair or a cave leading to an underground level, maybe even a few of those. How would I go about implementing those in 2D Unity?
In the end, I would like to generate those underground levels procedurally (I can already do that on the first level), and then have like, the top level become invisible when the main hero is underground, but switch freely between levels, and so that if I have an opening, like a pit, then I can see through from the top level to the level beneath it. Also, part of the squad may stay above to guard the entrance or something like that, which is one of the reasons I don’t want to use separate maps for each level.