2016-09-04 02:27:35 +00:00
|
|
|
#include "CAnimTreeDoubleChild.hpp"
|
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
|
2016-09-10 04:50:00 +00:00
|
|
|
CAnimTreeDoubleChild::CAnimTreeDoubleChild(const std::weak_ptr<CAnimTreeNode>& a,
|
|
|
|
const std::weak_ptr<CAnimTreeNode>& b,
|
2016-09-04 02:27:35 +00:00
|
|
|
const std::string& name)
|
2016-09-10 04:50:00 +00:00
|
|
|
: CAnimTreeNode(name), x14_a(a.lock()), x18_b(b.lock())
|
2016-09-04 02:27:35 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SAdvancementResults CAnimTreeDoubleChild::VAdvanceView(const CCharAnimTime& a)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 CAnimTreeDoubleChild::VGetBoolPOIList(const CCharAnimTime& time, CBoolPOINode* listOut,
|
|
|
|
u32 capacity, u32 iterator, u32) const
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 CAnimTreeDoubleChild::VGetInt32POIList(const CCharAnimTime& time, CInt32POINode* listOut,
|
|
|
|
u32 capacity, u32 iterator, u32) const
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 CAnimTreeDoubleChild::VGetParticlePOIList(const CCharAnimTime& time, CParticlePOINode* listOut,
|
|
|
|
u32 capacity, u32 iterator, u32) const
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 CAnimTreeDoubleChild::VGetSoundPOIList(const CCharAnimTime& time, CSoundPOINode* listOut,
|
|
|
|
u32 capacity, u32 iterator, u32) const
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CAnimTreeDoubleChild::VGetBoolPOIState(const char* name) const
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
s32 CAnimTreeDoubleChild::VGetInt32POIState(const char* name) const
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CParticleData::EParentedMode CAnimTreeDoubleChild::VGetParticlePOIState(const char* name) const
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void CAnimTreeDoubleChild::VSetPhase(float)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SAdvancementResults CAnimTreeDoubleChild::VGetAdvancementResults(const CCharAnimTime& a, const CCharAnimTime& b) const
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 CAnimTreeDoubleChild::Depth() const
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CAnimTreeEffectiveContribution CAnimTreeDoubleChild::VGetContributionOfHighestInfluence() const
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 CAnimTreeDoubleChild::VGetNumChildren() const
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<IAnimReader> CAnimTreeDoubleChild::VGetBestUnblendedChild() const
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void CAnimTreeDoubleChild::VGetWeightedReaders(std::vector<std::pair<float, std::weak_ptr<IAnimReader>>>& out, float w) const
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|