2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 10:27:42 +00:00

added multiple material sets to addon

This commit is contained in:
Jack Andersen
2015-08-15 12:56:55 -10:00
parent 3c5b5fd39a
commit 0da7ab7e01
4 changed files with 6 additions and 8 deletions

View File

@@ -34,8 +34,7 @@ struct SpecMP1 : SpecBase
m_cookPath(project.getProjectCookedPath(SpecEntMP1), _S("MP1")),
m_pakRouter(*this, m_workPath, m_cookPath) {}
void buildPaks(HECL::Database::Project& project,
NOD::DiscBase::IPartition::Node& root,
void buildPaks(NOD::DiscBase::IPartition::Node& root,
const std::vector<HECL::SystemString>& args,
ExtractReport& rep)
{
@@ -91,7 +90,7 @@ struct SpecMP1 : SpecBase
}
if (good)
m_paks.emplace_back(project, child);
m_paks.emplace_back(m_project, child);
}
}
@@ -139,7 +138,7 @@ struct SpecMP1 : SpecBase
/* Iterate PAKs and build level options */
NOD::DiscBase::IPartition::Node& root = partition->getFSTRoot();
buildPaks(m_project, root, args, rep);
buildPaks(root, args, rep);
return true;
}
@@ -200,7 +199,7 @@ struct SpecMP1 : SpecBase
NOD::DiscBase::IPartition::Node::DirectoryIterator mp1It = root.find("MP1");
if (mp1It == root.end())
return false;
buildPaks(m_project, *mp1It, mp1args, rep);
buildPaks(*mp1It, mp1args, rep);
return true;
}