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

Added a max_bones_per_partition parameter to ComplexShape::Split and...

Added a max_bones_per_partition parameter to ComplexShape::Split and NiTriBasedGeom::GenHardwareSkinInfo in anticipation of Tazpn adding that capability.
parent a33eab7c
No related branches found
No related tags found
No related merge requests found
......@@ -606,7 +606,7 @@ void ComplexShape::Merge( const Ref<NiAVObject> & root ) {
// }
//}
Ref<NiAVObject> ComplexShape::Split( Ref<NiNode> & parent, bool hw_skin_data, bool stripify ) const {
Ref<NiAVObject> ComplexShape::Split( Ref<NiNode> & parent, int max_bones_per_partition, bool stripify ) const {
//Make sure parent is not NULL
if ( parent == NULL ) {
......@@ -862,8 +862,8 @@ Ref<NiAVObject> ComplexShape::Split( Ref<NiNode> & parent, bool hw_skin_data, bo
shapes[shape_num]->SetBoneWeights( inf, shapeWeights[ shapeInfluences[inf] ] );
}
if ( hw_skin_data ) {
shapes[shape_num]->GenHardwareSkinInfo();
if ( max_bones_per_partition > 0 ) {
shapes[shape_num]->GenHardwareSkinInfo( max_bones_per_partition );
}
//NiSkinInstanceRef skinInst = shapes[shape_num]->GetSkinInstance();
......
......@@ -64,7 +64,7 @@ public:
vector<TexCoord> texCoords;
};
Ref<NiAVObject> Split( Ref<NiNode> & parent, bool hw_skin_data = false, bool stripify = false ) const;
Ref<NiAVObject> Split( Ref<NiNode> & parent, int max_bones_per_partition = 4, bool stripify = false ) const;
void Merge( const Ref<NiAVObject> & root );
void Clear();
......
......@@ -358,7 +358,7 @@ void NiTriBasedGeom::SetBoneWeights( uint bone_index, const vector<SkinWeight> &
skinData->SetBoneWeights( bone_index, n, center, radius );
}
void NiTriBasedGeom::GenHardwareSkinInfo( ) {
void NiTriBasedGeom::GenHardwareSkinInfo( int max_bones_per_partition ) {
NiSkinPartitionRef skinPart = new NiSkinPartition( this );
// Set the partition info in both places and it will be handled when exported.
......
......@@ -56,7 +56,7 @@ public:
*/
void SetBoneWeights( uint bone_index, const vector<SkinWeight> & n );
void GenHardwareSkinInfo( );
void GenHardwareSkinInfo( int max_bones_per_partition = 4 );
Ref<NiSkinInstance> GetSkinInstance() const;
......
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