mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-15 04:06:09 +00:00
Various imps and stubs
This commit is contained in:
31
Runtime/Character/CLinearAnimationTimeScale.hpp
Normal file
31
Runtime/Character/CLinearAnimationTimeScale.hpp
Normal file
@@ -0,0 +1,31 @@
|
||||
#ifndef __URDE_CLINEARANIMATIONTIMESCALE_HPP__
|
||||
#define __URDE_CLINEARANIMATIONTIMESCALE_HPP__
|
||||
|
||||
#include "IVaryingAnimationTimeScale.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
class CLinearAnimationTimeScale : public IVaryingAnimationTimeScale
|
||||
{
|
||||
public:
|
||||
class CFunctionDescription
|
||||
{
|
||||
public:
|
||||
CFunctionDescription(const float&, const float&, const float&);
|
||||
CFunctionDescription FunctionMirroredAround(const float&) const;
|
||||
};
|
||||
|
||||
private:
|
||||
public:
|
||||
CLinearAnimationTimeScale(const CCharAnimTime&, float, const CCharAnimTime&, float);
|
||||
u32 GetType() const { return 1; }
|
||||
float VTimeScaleIntegral(const float &, const float &) const { return 0.f; }
|
||||
float VFindUpperLimit(const float &, const float &) const { return 0.f; }
|
||||
std::unique_ptr<IVaryingAnimationTimeScale> VClone() { return {}; }
|
||||
std::unique_ptr<IVaryingAnimationTimeScale> VGetFunctionMirrored(const float &) const { return {}; }
|
||||
float TimeScaleIntegralWithSortedLimits(const CFunctionDescription&, const float&, const float&);
|
||||
float GetScale(const CFunctionDescription&, const float&);
|
||||
};
|
||||
}
|
||||
|
||||
#endif // __URDE_CLINEARANIMATIONTIMESCALE_HPP__
|
||||
Reference in New Issue
Block a user