Files
metaforce/Runtime/Character/CAnimTreeNode.cpp
T

22 lines
385 B
C++
Raw Normal View History

2016-04-11 13:35:37 -10:00
#include "CAnimTreeNode.hpp"
namespace urde
{
2016-08-27 11:16:44 -10:00
CAnimTreeEffectiveContribution CAnimTreeNode::GetContributionOfHighestInfluence() const
{
return VGetContributionOfHighestInfluence();
}
2016-04-11 13:35:37 -10:00
u32 CAnimTreeNode::GetNumChildren() const
{
return VGetNumChildren();
}
std::shared_ptr<IAnimReader> CAnimTreeNode::GetBestUnblendedChild() const
{
return VGetBestUnblendedChild();
}
}