Forgot to return a value.

This commit is contained in:
Andrzej Kapolka 2013-11-05 16:14:21 -08:00
parent ae4db63368
commit c55f8c5900

View file

@ -635,6 +635,7 @@ bool Model::restoreJointPosition(int jointIndex, float percent) {
foreach (int index, freeLineage) {
_jointStates[index].rotation = safeMix(_jointStates[index].rotation, geometry.joints.at(index).rotation, percent);
}
return true;
}
void Model::deleteGeometry() {