2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 13:44:56 +00:00

Minimized shader hash generation; more compatible MultiProgressPrinter

This commit is contained in:
Jack Andersen
2018-04-07 10:52:35 -10:00
parent 1eaa57bba2
commit 396790181a
7 changed files with 33 additions and 10 deletions

View File

@@ -26,12 +26,14 @@ class ToolPackage final : public ToolBase
{
if (!hecl::StrCmp(path.getLastComponent().data(), _S("!world.blend")))
AddSelectedItem(path);
#if RUNTIME_ORIGINAL_IDS
else if (!hecl::StrCmp(path.getLastComponent().data(), _S("!original_ids.yaml")))
{
auto pathComps = path.getPathComponents();
if (pathComps.size() == 2 && pathComps[0] != _S("out"))
AddSelectedItem(path);
}
#endif
}
void FindSelectedItems(const hecl::ProjectPath& path, bool checkGeneral)