Open GoogleCodeExporter opened 8 years ago
To be clear...
in TMXLayer.java, getTileAtXY() currently has the following
final int tileRow = (int)(localCoords[VERTEX_INDEX_Y] /
tmxTiledMap.getTileWidth());
and it should be
final int tileRow = (int)(localCoords[VERTEX_INDEX_Y] /
tmxTiledMap.getTileHeight());
ie, location dived by tile height, not width.
Original comment by sean.stu...@gmail.com
on 8 Sep 2011 at 9:46
Original issue reported on code.google.com by
p.love.m...@gmail.com
on 4 Aug 2011 at 4:44