2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-04-10 21:22:59 +00:00
|
|
|
|
|
|
|
#include "IMetaAnim.hpp"
|
|
|
|
#include "IOStreams.hpp"
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
|
|
|
|
|
|
|
class CMetaAnimBlend : public IMetaAnim {
|
|
|
|
std::shared_ptr<IMetaAnim> x4_animA;
|
|
|
|
std::shared_ptr<IMetaAnim> x8_animB;
|
|
|
|
float xc_blend;
|
|
|
|
bool x10_;
|
2016-04-10 21:22:59 +00:00
|
|
|
|
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CMetaAnimBlend(CInputStream& in);
|
2019-08-09 19:46:49 +00:00
|
|
|
EMetaAnimType GetType() const override { return EMetaAnimType::Blend; }
|
2016-04-10 21:22:59 +00:00
|
|
|
|
2019-08-09 19:46:49 +00:00
|
|
|
void GetUniquePrimitives(std::set<CPrimitive>& primsOut) const override;
|
2018-12-08 05:30:43 +00:00
|
|
|
std::shared_ptr<CAnimTreeNode> VGetAnimationTree(const CAnimSysContext& animSys,
|
2019-08-09 19:46:49 +00:00
|
|
|
const CMetaAnimTreeBuildOrders& orders) const override;
|
2016-04-10 21:22:59 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|