mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 21:07:42 +00:00
Various cleanups and minor imps
This commit is contained in:
@@ -6,19 +6,17 @@ namespace urde
|
||||
|
||||
CMetaTransTrans::CMetaTransTrans(CInputStream& in)
|
||||
{
|
||||
x4_ = in.readFloatBig();
|
||||
x8_ = in.readUint32Big();
|
||||
x4_animTime = CCharAnimTime(in);
|
||||
xc_ = in.readBool();
|
||||
xd_ = in.readBool();
|
||||
x10_ = in.readUint32Big();
|
||||
}
|
||||
|
||||
std::shared_ptr<CAnimTreeNode>
|
||||
CMetaTransTrans::VGetTransitionTree(const std::weak_ptr<CAnimTreeNode>& a,
|
||||
const std::weak_ptr<CAnimTreeNode>& b,
|
||||
const CAnimSysContext& animSys) const
|
||||
std::shared_ptr<CAnimTreeNode> CMetaTransTrans::VGetTransitionTree(const std::weak_ptr<CAnimTreeNode>& a,
|
||||
const std::weak_ptr<CAnimTreeNode>& b,
|
||||
const CAnimSysContext& animSys) const
|
||||
{
|
||||
return {};
|
||||
return std::make_shared<CAnimTreeTransition>(xc_, a, b, x4_animTime, xd_, x10_,
|
||||
CAnimTreeTransition::CreatePrimitiveName(a, b, x4_animTime));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user