Skip to content

Commit 2bbd53d

Browse files
Updated method UpdateModelAnimationBones() to UpdateModelAnimationEx() with correct datatype
1 parent bd637c2 commit 2bbd53d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

include/Model.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,16 +127,16 @@ class Model : public ::Model {
127127
/**
128128
* Update model animation pose
129129
*/
130-
Model& UpdateAnimation(const ::ModelAnimation& anim, int frame) {
130+
Model& UpdateAnimation(const ::ModelAnimation& anim, float frame) {
131131
::UpdateModelAnimation(*this, anim, frame);
132132
return *this;
133133
}
134134

135135
/**
136136
* Update model animation pose
137137
*/
138-
Model& UpdateAnimationBones(const ::ModelAnimation& anim, int frame) {
139-
::UpdateModelAnimationBones(*this, anim, frame);
138+
Model& UpdateAnimationsEx(const ::ModelAnimation& animA, float frameA, const ::ModelAnimation& animB, float frameB, float blend) {
139+
::UpdateModelAnimationEx(*this, animA, frameA, animB, frameB, blend);
140140
return *this;
141141
}
142142

0 commit comments

Comments
 (0)