diff options
| author | octorock <79596758+octorock@users.noreply.github.com> | 2022-12-14 17:23:07 +0100 |
|---|---|---|
| committer | octorock <79596758+octorock@users.noreply.github.com> | 2022-12-14 17:23:07 +0100 |
| commit | ec0678872fd29522f2b93a73af8a6196dd0fdbe8 (patch) | |
| tree | 2eade11615269ce5eb4b8c574b3c7957307be847 /tools/src | |
| parent | 8de186c1140018bba369f01c5d94bb7e85900df2 (diff) | |
Split map data into folders
Diffstat (limited to 'tools/src')
| -rw-r--r-- | tools/src/asset_processor/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/src/asset_processor/main.cpp b/tools/src/asset_processor/main.cpp index 67e1158d..0bc45518 100644 --- a/tools/src/asset_processor/main.cpp +++ b/tools/src/asset_processor/main.cpp @@ -280,8 +280,8 @@ std::unique_ptr<BaseAsset> getAssetHandlerByType(const std::filesystem::path& pa assetHandler = std::make_unique<GfxAsset>(path, start, size, asset); } else if (type == "palette") { assetHandler = std::make_unique<PaletteAsset>(path, start, size, asset); - } else if (type == "map_layer1" || type == "map_layer2" || type == "metatiles_tile_types1" || - type == "metatiles_tile_types2" || type == "metatiles_tileset1" || type == "metatiles_tileset2" || + } else if (type == "metatilemap" || + type == "metatileset_types" || type == "metatileset" || type == "map_mapping1" || type == "map_mapping2" || type == "tileset_mapping3" || type == "map_collision") { assetHandler = std::make_unique<MapAsset>(path, start, size, asset); |
