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