Hello, a question about the JSON content of a tilemap.
What do these numbers that use the "x" mean?
It is assumed that each value indicates the tile number but here the "x" is used, what does it mean?
https://i.imgur.com/w5aj8qG.png
Develop games in your browser. Powerful, performant & highly capable.
It means that number is repeated x amount of times.
So 44x5 is the same as 44,44,44,44,44. It makes the json file smaller.
It means that number is repeated x amount of times. So 44x5 is the same as 44,44,44,44,44. It makes the json file smaller.
I understand, thanks :)