[Solved] How do I make the tilemap visible?

I’ve been trying for hours to make my tilemap visible and nothing! No format change makes it work, not even changing .png!

While there isn’t anything that makes tilemaps “visible” outside of having a properly formatted tilemap, the most common issues people run into with Tilemaps:

  1. They set their tilemap to “infinite” rather than a fixed size (infinite is supported by Tiled for map editing, but generally not supported by game engines. You must have a fixed map size before exporting)
  2. They have a tileset/tile atlas image that is over 2048x2048 pixels. Just like any other texture, that is generally the maximum supported.
  3. The tileset or tilemap has invalid characters in their names. (a-z, 0-9, - or _ only)
  4. They only loaded the tilemap without embedding the tileset, and did not load the tileset/tile atlas.

You might check the above and see if you have any of these issues (although the infinite size is the most common issue).

1 Like

I LOVE YOU, IT WAS INFINITY I DON’T KNOW WHAT

3 Likes