Tiled can give multiple formats for output.
But what catches my attention is that the tile ID’s dont match with the given tilesets.
For example: I have two tile sets, one for layer 1, and the other for layer 2. The tile ID’s go from 0 to the maximum number of tiles on that set.
But when I look at the output format (e.g. I open .tmx with visual studio code to retrieve some data), I see that different numbers then the tile ID’s are used. So when I draw tiles with ID 0, it outputs 1. And in layer 2 it goes more weird: when I draw a tile with ID 0, it does output 0. But then, when I draw a tile with ID 1, it places 52. Why?
And the main question is, how can I change this, so that it just outputs the tile ID’s?
With kind regards