Modding Tilesets

From PMDOWiki

In PMDO, graphics for maps are stored in tilesheet files. They are the *.tile files found in the Content/Tile subdirectory. Ground maps can be 8x8, 16x16, 24x24, etc. Dungeons are always 24x24 in tilesize, and thus can only use tilesheets that are 24x24.

There are several ways to import tilesets.

PNG Import

The easiest way to import a tileset is through the Map or Ground Editor:

This option will import a PNG and slice it by the tilesize that the current ground is edited as. You can check this value by going to Edit->Re-Tile Map:

If you are editing a dungeon map, the tile size is always 24x24 and you cannot change this value.


You can also import a PNG using the Tiles editor:

In this case, you will be prompted for a tileset size to import it with:

DTEF Import

If you want to import an autotile, you can also import a folder that conforms to DTEF specification. You can do this from the Autotile editor:


In order for your autotile to be imported correctly, you will need to arrange the tiles in a specific format:

Tileset images must conform to a naming convention:

tileset_[Variant].png

You can learn more in the DTEF specification.

Additionally, PMDO extends the format by using additional pngs that adhere to secondary naming convention:

tileset_[Variant]_frame[Layer]_[Frame].[Duration].png

  • Layer: the layer of the animation; tile animations may have multiple layers. An example would be the water of Apple Woods: The base water changes color on one layer, while the water sparkle animation is done on a different layer.
  • Frame: The frame number of the animation.
  • Duration: The duration of the animation in frames (1/60th of a second)

You can find examples of this in the RawAsset repository.