How can I author objects with perspective that fit into a tile-based map but span multiple tiles?

Posted by Growler on Game Development See other posts from Game Development or by Growler
Published on 2014-08-18T19:40:33Z Indexed on 2014/08/18 22:33 UTC
Read the original article Hit count: 423

Filed under:
|
|
|

I'm creating a tilemap city and trying to figure out the most efficient way to create unique building scenes. The trick is, I need to maintain a sort of 2D, almost-top-down perspective, which is hard to do with buildings or large objects that span multiple tiles.

I've tried doing three buildings at a time, and mixing and matching the base layer and colors, like this:

enter image description here

This creates a weird overlapping effect, and also doesn't seem that efficient from a production standpoint. But it was the best way to have shadows appear correctly on the neighboring buildings.

I'm wondering if modular buildings would be the way to go? That way I can mix and match any set of buildings together as tiles:

enter image description here

I guess I would have to risk some perspective and shadowing to get the buildings to align correctly.

What sort of authoring process could I use to allow me to create a variety of buildings (or other objects) that maintain this perspective while spanning multiple tiles worth of screen space? Would you recommend creating blank buildings, and then affixing art overlays as necessary to make the buildings unique? Or should they be directly part of the building tile (for example, create a separate tileset of buildings signs and colorings)?

enter image description here

© Game Development or respective owner

Related posts about tilemap

Related posts about rpg