2020-01-15 07:07:48 -05:00
|
|
|
#include "Runtime/Character/CAnimTreeNode.hpp"
|
2016-04-11 13:35:37 -10:00
|
|
|
|
2021-04-10 01:42:06 -07:00
|
|
|
namespace metaforce {
|
2016-04-11 13:35:37 -10:00
|
|
|
|
2018-12-07 19:30:43 -10:00
|
|
|
CAnimTreeEffectiveContribution CAnimTreeNode::GetContributionOfHighestInfluence() const {
|
|
|
|
|
return VGetContributionOfHighestInfluence();
|
2016-08-27 11:16:44 -10:00
|
|
|
}
|
|
|
|
|
|
2018-12-07 19:30:43 -10:00
|
|
|
u32 CAnimTreeNode::GetNumChildren() const { return VGetNumChildren(); }
|
2016-04-11 13:35:37 -10:00
|
|
|
|
2018-12-07 19:30:43 -10:00
|
|
|
std::shared_ptr<IAnimReader> CAnimTreeNode::GetBestUnblendedChild() const { return VGetBestUnblendedChild(); }
|
2016-04-11 13:35:37 -10:00
|
|
|
|
2021-04-10 01:42:06 -07:00
|
|
|
} // namespace metaforce
|