2020-01-15 12:07:48 +00:00
|
|
|
#include "Runtime/Character/CTreeUtils.hpp"
|
|
|
|
|
|
|
|
#include "Runtime/Character/CAnimSysContext.hpp"
|
|
|
|
#include "Runtime/Character/CAnimTreeNode.hpp"
|
|
|
|
#include "Runtime/Character/CTransitionDatabaseGame.hpp"
|
|
|
|
#include "Runtime/Character/IMetaTrans.hpp"
|
2016-09-04 02:27:35 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
2016-09-04 02:27:35 +00:00
|
|
|
|
2018-01-30 01:04:01 +00:00
|
|
|
std::shared_ptr<CAnimTreeNode> CTreeUtils::GetTransitionTree(const std::weak_ptr<CAnimTreeNode>& a,
|
|
|
|
const std::weak_ptr<CAnimTreeNode>& b,
|
2018-12-08 05:30:43 +00:00
|
|
|
const CAnimSysContext& animCtx) {
|
|
|
|
CAnimTreeEffectiveContribution contribA = a.lock()->GetContributionOfHighestInfluence();
|
|
|
|
CAnimTreeEffectiveContribution contribB = b.lock()->GetContributionOfHighestInfluence();
|
|
|
|
return animCtx.x0_transDB->GetMetaTrans(contribA.GetAnimDatabaseIndex(), contribB.GetAnimDatabaseIndex())
|
|
|
|
->GetTransitionTree(a, b, animCtx);
|
2016-09-04 02:27:35 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|