Isometric - precise screen coordinates to isometric
- by Rawrz
I'm trying to translate mouse coords to precise isometric coords (I can already find the tile the mouse is over, but I want it to be more precise). I've tried several different methods but I seem to keep falling short.
For drawing I use:
batch.draw(
texture,
(y * tileWidth / 2) + (x * tileWidth / 2),
(x * tileHeight / 2) - (y *…