diff --git a/include/ComplexShape.h b/include/ComplexShape.h index dafc4b8f51ae2495ae7c33e370442e873b040048..d6fd883aa6810bbc32bcdd7acf42b55cf3107bcf 100644 --- a/include/ComplexShape.h +++ b/include/ComplexShape.h @@ -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(); diff --git a/src/ComplexShape.cpp b/src/ComplexShape.cpp index eaff4b44233852bbdde6116a42e7d462070701a0..439bbbbb993782a5cc6db922f6fa647d684e2fa7 100644 --- a/src/ComplexShape.cpp +++ b/src/ComplexShape.cpp @@ -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 }