Tiled2BB and Isometric

Blitz3D Forums/Blitz3D Programming/Tiled2BB and Isometric

Spike314(Posted 2013) [#1]
Hi I'm trying to load a isometric map created with Tiled using Tiled2BB but I am unable to line the tiles up correctly and I am Hoping someome will be able to help.

Heres the draw code :



Spike314(Posted 2013) [#2]
I Solved my problem like this
    x = (j * tile_width / 2) + (i * tile_width / 2)
            y = (i * tile_height / 2) - (j * tile_height / 2)