diff options
Diffstat (limited to 'Runtime/Animation/MecanimAnimation.h')
-rw-r--r-- | Runtime/Animation/MecanimAnimation.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Runtime/Animation/MecanimAnimation.h b/Runtime/Animation/MecanimAnimation.h new file mode 100644 index 0000000..aea8190 --- /dev/null +++ b/Runtime/Animation/MecanimAnimation.h @@ -0,0 +1,23 @@ +#pragma once + +#include "Runtime/Interfaces/IAnimation.h" + + +class MecanimAnimation : public IAnimation +{ +public: + static void InitializeClass (); + static void CleanupClass (); + + MecanimAnimation() {} + ~MecanimAnimation() {} + + virtual const void* GetGlobalSpaceSkeletonPose(const Unity::Component& animator); + + virtual bool CalculateWorldSpaceMatricesMainThread(Unity::Component& animator, const UInt16* indices, size_t count, Matrix4x4f* outMatrices); + + virtual CalculateAnimatorSkinMatricesFunc GetCalculateAnimatorSkinMatricesFunc(); + + virtual bool PathHashesToIndices(Unity::Component& animator, const BindingHash* bonePathHashes, size_t count, UInt16* outIndices); + +};
\ No newline at end of file |