metaforce/Runtime/Character/CAnimTreeBlend.cpp

52 lines
1.1 KiB
C++
Raw Normal View History

2016-09-04 02:27:35 +00:00
#include "CAnimTreeBlend.hpp"
namespace urde
{
std::string CAnimTreeBlend::CreatePrimitiveName(const std::shared_ptr<CAnimTreeNode>& a,
const std::shared_ptr<CAnimTreeNode>& b,
float scale)
{
return "";
}
CAnimTreeBlend::CAnimTreeBlend(bool b1,
const std::shared_ptr<CAnimTreeNode>& a,
const std::shared_ptr<CAnimTreeNode>& b,
2017-11-13 06:19:18 +00:00
float blendWeight, std::string_view name)
2016-09-04 02:27:35 +00:00
: CAnimTreeTweenBase(b1, a, b, 1 | 2, name), x24_blendWeight(blendWeight)
{
}
SAdvancementResults CAnimTreeBlend::VAdvanceView(const CCharAnimTime& a)
{
2016-09-11 01:25:59 +00:00
return {};
2016-09-04 02:27:35 +00:00
}
CCharAnimTime CAnimTreeBlend::VGetTimeRemaining() const
{
2016-09-11 01:25:59 +00:00
return {};
2016-09-04 02:27:35 +00:00
}
CSteadyStateAnimInfo CAnimTreeBlend::VGetSteadyStateAnimInfo() const
{
2016-09-11 01:25:59 +00:00
return {};
2016-09-04 02:27:35 +00:00
}
2017-03-01 06:02:54 +00:00
std::unique_ptr<IAnimReader> CAnimTreeBlend::VClone() const
2016-09-04 02:27:35 +00:00
{
2016-09-11 01:25:59 +00:00
return {};
2016-09-04 02:27:35 +00:00
}
void CAnimTreeBlend::SetBlendingWeight(float w)
{
}
float CAnimTreeBlend::VGetBlendingWeight() const
{
2016-09-11 01:25:59 +00:00
return 0.f;
2016-09-04 02:27:35 +00:00
}
}