Skeleton: Fix method name

This commit is contained in:
SirLynix 2022-08-24 08:40:04 +02:00 committed by Jérôme Leclercq
parent 133caac5b5
commit 9e56592211
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ namespace Nz
std::size_t GetJointCount() const; std::size_t GetJointCount() const;
std::size_t GetJointIndex(const std::string& jointName) const; std::size_t GetJointIndex(const std::string& jointName) const;
Joint* GetRootJoint(); Joint* GetRootJoint();
const Joint* GetRootJoints() const; const Joint* GetRootJoint() const;
void Interpolate(const Skeleton& skeletonA, const Skeleton& skeletonB, float interpolation); void Interpolate(const Skeleton& skeletonA, const Skeleton& skeletonB, float interpolation);
void Interpolate(const Skeleton& skeletonA, const Skeleton& skeletonB, float interpolation, const std::size_t* indices, std::size_t indiceCount); void Interpolate(const Skeleton& skeletonA, const Skeleton& skeletonB, float interpolation, const std::size_t* indices, std::size_t indiceCount);