Skip to content

Commit 0ef6d50

Browse files
Fixed a regression that caused BMD and BDL exported models to have invalid skinning information.
1 parent c02e127 commit 0ef6d50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SuperBMD/source/Model.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ public void ExportAssImp(string fileName, string modelType, ExportSettings setti
181181
}
182182

183183
AssimpContext cont = new AssimpContext();
184-
cont.ExportFile(outScene, fileName, "collada", PostProcessSteps.ValidateDataStructure | PostProcessSteps.JoinIdenticalVertices);
184+
cont.ExportFile(outScene, fileName, "collada", PostProcessSteps.ValidateDataStructure);
185185

186186
if (SkinningEnvelopes.Weights.Count == 0)
187187
return; // There's no skinning information, so we can stop here

0 commit comments

Comments
 (0)