Hey tile builders!
I just starting using Tiled and am looking for a way to programictically access a tiles texture. But all I found was its texture of the texture region which is the whole tileset (i.e. not the 32x32 texture but the whole 3250x3250 tileset). I’m currently using LIBGDX and seem to not find any method that returns a texture other than the whole tileset texture.
The places I’ve looked at so far is the cells and corresponding tiles as such:
(TiledMapTileLayer)tiledMap.getLayers().get("MyCustomLayer").getCell(0,0);
(TiledMapTileLayer)tiledMap.getLayers().get("MyCustomLayer").getCell(0,0).getTile();
Is there any way of getting the corresponding tile texture of one particular tile? I can see inside the .tmx that the map is saved in a base64 format, so maybe it is not accessable…