I’m currently using this tileset:
There are gaps between the individual tiles, which means that the tiles I’m using have larger numbers assigned to them. This makes my exported .csv file more difficult to interpret and use (I’m using pygame). Also, if I stamp one of the transparent gap tiles onto the map, it looks the same but instead of having an empty value assigned to it, it has the value of the tile I stamped (which could cause problems in pygame later on).
So, to solve these problems, should I edit my tileset to have no gaps, or is there an alternative workaround where I can manually assign numbers to the tiles in the tileset?
Thanks in advance for any help.