Simple-Tiled-Implementation
Simple-Tiled-Implementation copied to clipboard
Isometric coordinates not generating automatically
For isometric maps, the x and y coordinates obtained from the map are not properly converted, instead giving orthographic coordinates.
In the mean time, you can get the correct isometric coordinates by dividing the x and y coordinates by tile height (resulting in the position in tiles), and then plugging them into the Map:convertTileToPixel function.