mirror of https://github.com/AxioDL/metaforce.git
24 lines
616 B
C++
24 lines
616 B
C++
#pragma once
|
|
|
|
#include "IMetaAnim.hpp"
|
|
#include "IOStreams.hpp"
|
|
|
|
namespace urde {
|
|
|
|
class CMetaAnimBlend : public IMetaAnim {
|
|
std::shared_ptr<IMetaAnim> x4_animA;
|
|
std::shared_ptr<IMetaAnim> x8_animB;
|
|
float xc_blend;
|
|
bool x10_;
|
|
|
|
public:
|
|
CMetaAnimBlend(CInputStream& in);
|
|
EMetaAnimType GetType() const { return EMetaAnimType::Blend; }
|
|
|
|
void GetUniquePrimitives(std::set<CPrimitive>& primsOut) const;
|
|
std::shared_ptr<CAnimTreeNode> VGetAnimationTree(const CAnimSysContext& animSys,
|
|
const CMetaAnimTreeBuildOrders& orders) const;
|
|
};
|
|
|
|
} // namespace urde
|