#ifndef __URDE_CANIMTREEBLEND_HPP__ #define __URDE_CANIMTREEBLEND_HPP__ #include "CAnimTreeTweenBase.hpp" namespace urde { class CAnimTreeBlend : public CAnimTreeTweenBase { float x24_blendWeight; public: static std::string CreatePrimitiveName(const std::shared_ptr& a, const std::shared_ptr& b, float scale); CAnimTreeBlend(bool, const std::shared_ptr& a, const std::shared_ptr& b, float blendWeight, const std::string& name); SAdvancementResults VAdvanceView(const CCharAnimTime& a); CCharAnimTime VGetTimeRemaining() const; CSteadyStateAnimInfo VGetSteadyStateAnimInfo() const; std::shared_ptr VClone() const; void SetBlendingWeight(float w); float VGetBlendingWeight() const; }; } #endif // __URDE_CANIMTREEBLEND_HPP__