revert s/VertexIndexWeight/IndexWeight/

This commit is contained in:
Julien Valentin
2017-08-31 13:30:24 +02:00
parent 0926bb783d
commit 068a032dac
8 changed files with 22 additions and 26 deletions

View File

@@ -827,7 +827,7 @@ bool RigGeometry_readLocalData(Object& obj, Input& fr)
fr += 2;
iteratorAdvanced = true;
}
vi.push_back(osgAnimation::IndexWeight(index, weight));
vi.push_back(osgAnimation::VertexIndexWeight(index, weight));
}
if (fr.matchSequence("}"))
{

View File

@@ -27,7 +27,7 @@ static bool readInfluenceMap( osgDB::InputStream& is, osgAnimation::RigGeometry&
int index = 0;
float weight = 0.0f;
is >> index >> weight;
vi.push_back( osgAnimation::IndexWeight(index, weight) );
vi.push_back( osgAnimation::VertexIndexWeight(index, weight) );
}
(*map)[bonename] = vi;
is >> is.END_BRACKET;