2D Toolkit Forum
2D Toolkit => Support => Topic started by: ncr on November 24, 2013, 10:02:09 am
-
Hello,
In 2.3.0, there's a bug TileMapImporter at line 187:
int offset = (staggered && ((y % 2) == 0)) ? 0 : 1;
For non-staggered maps, the offset is always 1, resulting in a tile map being rendered off by one tile length, and also crashing when the resolution of the tile map is divisible by the chunk size (eg. 256).
Best,
Jacek
-
It is indeed a bug - you should be able to fix it with this patch here:
http://2dtoolkit.com/forum/index.php/topic,3116.msg15307.html#msg15307
It will be in the next version.
-
Thanks for a quick reply!