2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 21:51:22 +00:00
metaforce/Runtime/Character/CAnimTreeTimeScale.hpp
2017-11-12 20:19:18 -10:00

28 lines
757 B
C++

#ifndef __URDE_CANIMTREETIMESCALE_HPP__
#define __URDE_CANIMTREETIMESCALE_HPP__
#include "CAnimTreeSingleChild.hpp"
#include "CTimeScaleFunctions.hpp"
namespace urde
{
class CAnimTreeTimeScale : public CAnimTreeSingleChild
{
std::shared_ptr<CConstantAnimationTimeScale> x18_timeScale;
CCharAnimTime x20_;
CCharAnimTime x28_;
public:
CAnimTreeTimeScale(const std::weak_ptr<CAnimTreeNode>&, float, std::string_view);
static std::string CreatePrimitiveName(const std::weak_ptr<CAnimTreeNode>&, float, const CCharAnimTime&, float);
CCharAnimTime GetRealLifeTime(const CCharAnimTime&) const;
void VSetPhase(float);
std::pair<std::unique_ptr<IAnimReader>, bool> VSimplified();
};
}
#endif // __URDE_CANIMTREETIMESCALE_HPP__