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

Added option to ComplexShape::Split to request the generation of tangent space.

parent 79018e95
No related branches found
No related tags found
No related merge requests found
......@@ -64,7 +64,7 @@ public:
vector<TexCoord> texCoords;
};
Ref<NiAVObject> Split( Ref<NiNode> & parent, Matrix44 & transform, int max_bones_per_partition = 4, bool stripify = false ) const;
Ref<NiAVObject> Split( Ref<NiNode> & parent, Matrix44 & transform, int max_bones_per_partition = 4, bool stripify = false, bool tangent_space = false ) const;
void Merge( const Ref<NiAVObject> & root );
void Clear();
......
......@@ -606,7 +606,7 @@ void ComplexShape::Merge( const Ref<NiAVObject> & root ) {
// }
//}
Ref<NiAVObject> ComplexShape::Split( Ref<NiNode> & parent, Matrix44 & transform, int max_bones_per_partition, bool stripify ) const {
Ref<NiAVObject> ComplexShape::Split( Ref<NiNode> & parent, Matrix44 & transform, int max_bones_per_partition, bool stripify, bool tangent_space ) const {
//Make sure parent is not NULL
if ( parent == NULL ) {
......@@ -881,6 +881,11 @@ Ref<NiAVObject> ComplexShape::Split( Ref<NiNode> & parent, Matrix44 & transform,
// }
//}
}
//If tangent space was requested, generate it
if ( tangent_space ) {
shapes[shape_num]->UpdateTangentSpace();
}
//Next Shape
}
......
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