metaforce/Runtime/Character/CMetaTransSnap.cpp

15 lines
329 B
C++
Raw Normal View History

2016-04-10 21:22:59 +00:00
#include "CMetaTransSnap.hpp"
namespace urde
{
std::shared_ptr<CAnimTreeNode>
CMetaTransSnap::VGetTransitionTree(const std::weak_ptr<CAnimTreeNode>& a,
const std::weak_ptr<CAnimTreeNode>& b,
const CAnimSysContext& animSys) const
{
2016-04-11 03:59:54 +00:00
return b.lock();
2016-04-10 21:22:59 +00:00
}
}