Commit f978f537 authored by hybrid's avatar hybrid

Fixed wrong weights assignment found by bang2ni.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@1249 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 152f5f1c
...@@ -907,7 +907,7 @@ bool CXMeshFileLoader::parseDataObjectSkinWeights(SXMesh &mesh) ...@@ -907,7 +907,7 @@ bool CXMeshFileLoader::parseDataObjectSkinWeights(SXMesh &mesh)
// read vertex weights // read vertex weights
for (i=0; i<nWeights; ++i) for (i=jointStart; i<jointStart+nWeights; ++i)
joint->Weights[i].strength = readFloat(); joint->Weights[i].strength = readFloat();
// read matrix offset // read matrix offset
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment