tests: Implemented more tileset testing. Only missing terrains and wang sets at this point.

This commit is contained in:
Darren Eberly
2020-06-09 21:59:03 -04:00
parent 241127c6f1
commit 452101521c
2 changed files with 2 additions and 0 deletions

View File

@@ -13,6 +13,7 @@ EXPECTED = tileset.TileSet(
tile_width=32,
version=1.2,
type="tileset",
grid=tileset.Grid(orientation="orthogonal", width=1, height=1),
tiles=[
tileset.Tile(
animation=[

View File

@@ -20,6 +20,7 @@ ALL_TILESET_DIRS = [
TILE_SETS / "image_properties",
TILE_SETS / "image_transparent_color",
TILE_SETS / "image_tile_offset",
TILE_SETS / "individual_images",
]