mirror of https://github.com/AxioDL/metaforce.git
44 lines
1016 B
C++
44 lines
1016 B
C++
#include "CAnimTreeTweenBase.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
s32 CAnimTreeTweenBase::sAdvancementDepth = 0;
|
|
|
|
CAnimTreeTweenBase::CAnimTreeTweenBase(bool b1, const std::weak_ptr<CAnimTreeNode>& a,
|
|
const std::weak_ptr<CAnimTreeNode>& b, int flags, const std::string& name)
|
|
: CAnimTreeDoubleChild(a, b, name), x1c_flags(flags), x20_31_b1(b1)
|
|
{
|
|
}
|
|
|
|
void CAnimTreeTweenBase::VGetSegStatementSet(const CSegIdList& list, CSegStatementSet& setOut) const
|
|
{
|
|
|
|
}
|
|
|
|
void CAnimTreeTweenBase::VGetSegStatementSet(const CSegIdList& list, CSegStatementSet& setOut,
|
|
const CCharAnimTime& time) const
|
|
{
|
|
}
|
|
|
|
bool CAnimTreeTweenBase::VHasOffset(const CSegId& seg) const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
zeus::CVector3f CAnimTreeTweenBase::VGetOffset(const CSegId& seg) const
|
|
{
|
|
return {};
|
|
}
|
|
|
|
zeus::CQuaternion CAnimTreeTweenBase::VGetRotation(const CSegId& seg) const
|
|
{
|
|
return {};
|
|
}
|
|
|
|
std::shared_ptr<IAnimReader> CAnimTreeTweenBase::VSimplified()
|
|
{
|
|
return {};
|
|
}
|
|
}
|