Skip to content
Snippets Groups Projects
Commit bc2dda6f authored by Shon Ferguson's avatar Shon Ferguson
Browse files

Fixed a bug in ComplexShape::Merge that occurred when a shape had no UV set,...

Fixed a bug in ComplexShape::Merge that occurred when a shape had no UV set, but, for some reason, had a texture referencing UV set zero.
Changed NiSkinData::NormalizeWeights to use doubles, trying to increase the accuracy.
parent 2dfaa0c8
No related branches found
No related tags found
No related merge requests found
...@@ -344,7 +344,7 @@ void ComplexShape::Merge( const Ref<NiAVObject> & root ) { ...@@ -344,7 +344,7 @@ void ComplexShape::Merge( const Ref<NiAVObject> & root ) {
niTexProp = DynamicCast<NiTexturingProperty>(niProp); niTexProp = DynamicCast<NiTexturingProperty>(niProp);
} }
if ( niTexProp != NULL ) { if ( niTexProp != NULL && shapeUVs.size() != 0 ) {
//Add the UV set to the list for every type of texture slot that uses it //Add the UV set to the list for every type of texture slot that uses it
for ( int tex = 0; tex < 8; ++tex ) { for ( int tex = 0; tex < 8; ++tex ) {
if ( niTexProp->HasTexture(tex) == true ) { if ( niTexProp->HasTexture(tex) == true ) {
......
...@@ -84,12 +84,12 @@ NiSkinData::NiSkinData( const Ref<NiGeometry> & owner ) NI_SKIN_DATA_CONSTRUCT { ...@@ -84,12 +84,12 @@ NiSkinData::NiSkinData( const Ref<NiGeometry> & owner ) NI_SKIN_DATA_CONSTRUCT {
} }
void NiSkinData::NormalizeWeights( unsigned numVertices ) { void NiSkinData::NormalizeWeights( unsigned numVertices ) {
vector<float> totals(numVertices); vector<double> totals(numVertices);
vector<int> counts(numVertices); vector<int> counts(numVertices);
//Set all totals to 1.0 and all counts to 0 //Set all totals to 1.0 and all counts to 0
for ( unsigned v = 0; v < numVertices; ++v ) { for ( unsigned v = 0; v < numVertices; ++v ) {
totals[v] = 1.0f; totals[v] = 1.0;
counts[v] = 0; counts[v] = 0;
} }
...@@ -107,14 +107,15 @@ void NiSkinData::NormalizeWeights( unsigned numVertices ) { ...@@ -107,14 +107,15 @@ void NiSkinData::NormalizeWeights( unsigned numVertices ) {
//Divide all error amounts by the number of bones affecting that vertex to //Divide all error amounts by the number of bones affecting that vertex to
//get the amount of error that should be distributed to each bone. //get the amount of error that should be distributed to each bone.
for ( unsigned v = 0; v < numVertices; ++v ) { for ( unsigned v = 0; v < numVertices; ++v ) {
totals[v] = totals[v] / float(counts[v]); totals[v] = totals[v] / double(counts[v]);
} }
//Distribute the calculated error to each weight //Distribute the calculated error to each weight
for ( unsigned b = 0; b < boneList.size(); ++b ) { for ( unsigned b = 0; b < boneList.size(); ++b ) {
for ( unsigned w = 0; w < boneList[b].vertexWeights.size(); ++w ) { for ( unsigned w = 0; w < boneList[b].vertexWeights.size(); ++w ) {
SkinWeight & sw = boneList[b].vertexWeights[w]; SkinWeight & sw = boneList[b].vertexWeights[w];
sw.weight += totals[sw.index]; double temp = double(sw.weight) + totals[sw.index];
sw.weight = float(temp);
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment