mirror of https://github.com/AxioDL/metaforce.git
Update submodules
This commit is contained in:
parent
23c718fe18
commit
44ea9e68ed
|
@ -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
2
hecl
|
@ -1 +1 @@
|
|||
Subproject commit 4f98c566fad80e9aed5da411795acc9d81b1062c
|
||||
Subproject commit 87c8205a91c748167456e02e1069a1cfc290728d
|
2
nod
2
nod
|
@ -1 +1 @@
|
|||
Subproject commit 18b297e3125ff8f3d318a203217f682330a8e4ea
|
||||
Subproject commit c9bf821285202eec382a673bdfa41044e6cbba7f
|
Loading…
Reference in New Issue