I am trying to add a sprite at a "grid" location on the tiled map. The TMX tiled Map is like a grid, and you can access the size of the grid by calling mTMXtiledMap.getTileRows() and mTMXtiledMap.getTileColumns().
I want to add an object at grid location, say (2, 5). My tileMap is of size (10,10).
How can I do that? There is no function like mTMXTiledMap.addChild(int x, int y, Entity mEntity).
I would appreciate any suggestions!