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

Update submodules

This commit is contained in:
2019-08-17 23:01:05 -07:00
parent 23c718fe18
commit 44ea9e68ed
3 changed files with 8 additions and 2 deletions

View File

@@ -660,6 +660,10 @@ void ANCS::AnimationSet::MetaAnimFactory::Enumerate<BigDNA::ReadYaml>(athena::io
if (!type.compare("primitive")) {
m_anim.reset(new struct MetaAnimPrimitive);
m_anim->read(reader);
if (static_cast<MetaAnimPrimitive*>(m_anim.get())->animName == "B_outofdig4_garbeetle") {
fmt::print(fmt("{} -> {}\n"), static_cast<MetaAnimPrimitive*>(m_anim.get())->animName,
static_cast<MetaAnimPrimitive*>(m_anim.get())->animId);
}
} else if (!type.compare("blend")) {
m_anim.reset(new struct MetaAnimBlend);
m_anim->read(reader);
@@ -1059,6 +1063,8 @@ bool ANCS::Cook(const hecl::ProjectPath& outPath, const hecl::ProjectPath& inPat
hecl::SystemStringConv sysStr(prim.animName);
hecl::ProjectPath pathOut = inPath.ensureAuxInfo(hecl::SystemString(sysStr.sys_str()) + _SYS_STR(".ANIM"));
prim.animId = pathOut;
if (prim.animName == "B_outofdig4_garbeetle")
fmt::print(fmt("{}|{}\n"), pathOut.getRelativePathUTF8(), pathOut.getAuxInfoUTF8());
return true;
});

2
hecl

Submodule hecl updated: 4f98c566fa...87c8205a91

2
nod

Submodule nod updated: 18b297e312...c9bf821285