|
Isometric Tile: 1:1 ratio |
|
|
Before we begin, im going to assume that youve read the standard isometric tile
tutorial, considering that the style is far more commonly used in most fad illustrations
and in the gaming world. |
|
![]() ![]() Illustrated is a 1:1 isometric tile, standing at 32x32 pixels in dimension, next to a 1:1 isometric block with a 32x48 dimension. The half block is 8 pixels tall, just as the case with a standard iso half block. |
• Lets begin with the basic tile. The dimensions are 32x32 for our
isometric tile, with a 1:1 ratio with respect to horizontal and vertical lengths
of each side. Each vertice/corner has a 2 pixel edge which are all identical,
unlike the corners of a standard isometric tile. |
![]() A 1:1 isometric flat surface has no need for offsetting individual tiles to create the grid illusion, granted that you emulated the basic isometric tile in the first step. |
• Surface tiling is very simple with this type of isometric tile. There arent many ways to misinterpret a perfect diamond's edges so that they fit comfortably next to each other without overlapping. There is no vertical or horizontal offsetting for placing these isometric tiles in a tiled view, which in this example creates a perfect 64x64 canvas size, and some number divisible by 8 in any example. if your canas dimensions are not divisible by 8 after building a 1:1 isometric map, youve clearly misplaced a tile somewhere along the line. Everything fits snug as a bug under a rug ^_^. |
![]() ![]() A lot of the same rules apply for 1:1 isometric tiles as standard ones, save the tilesize is now 16x16. However 16x8 meta tiles can be utilized in situations, such as making the half block. Note that to extend a wall, you need a seperate 16x8 meta tile minimum to do so. Basically everything can be broken down into 8x8's, but its really hard to draw it all in that size, so let a programmer's tool do that dirty work for you if you are so lucky to be working with one. |
• lets take a look at the basic building blocks for our 1:1 isometric
maps. Illustrated on the top is an isometric stack. The top tiles are easy enough
to comprehend, each quadrant of the isometric tile can be broken up into 16x16
tiles, maintaining the 1:1 horizontal/vertical ratio of the actual isometric tile,
and the horizontal normal slope of 1. However there is a small anomaly with our
isometric stack. If we wanted to insert a tile that would vary the height of the
wall to any desired value, we need to make a special tile, 16x8 at minimum, to
achieve this. In the standard isometric block, due to the way the tiles were cut,
this tile already existed within the block, but for our stack,
we have to include a completely unique tile to do so. In other words, a 1:1 isometric
block, when cut into square tiles, is entirely composed of "transition tiles".
Therefore, a scheme of using layers of tiles and transparencies to overlay individual
floor and tile peices would actually prove even more valuable in this situation,
assuming that you are building a tactical style map with height units which are
dependant on the block as being a benchmark for units of height. |
| Back | |