Hello, I would like to implement a 2D Zelda like map in my game. There are two types of 2D Zelda world maps. The first one is a square shaped map with sections of equal size, for example the Zelda: Link’s awakening:
The second type is a map such as Zelda: A Link between worlds where the sections are of different size.
When Link is in a section of the map the camera will not pan out of that section.
The first map is easy to implement, but I have no clue how to implement the second map. The problem is that I do not know how to divide the map into asymmetrical sections.
One thing that comes to mind is to put each section of the map in an individual map file. I would prefer not to because then editing becomes tedious. The goal is to keep the whole map in one file and then make it possible to set the map sections through configuring properties in the Tiled map editor.