Fix .blend import and rebase regression database
BlenderBMeshConverter was erroneously asserting that it contained valid mesh upon construction. The assertion should only occur when triangulation is requested, allowing non-BMesh blender meshes to load properly. Also rebase the regression test suite, validating that .blend meshes now properly load and also pulling in a number of unexpected success cases (including meshes of bvh, nff, ifc and fbx types). This effectively resolves #382.pull/384/head
parent
f2d26222fc
commit
6cb6284756
|
@ -65,7 +65,6 @@ BlenderBMeshConverter::BlenderBMeshConverter( const Mesh* mesh ):
|
||||||
BMesh( mesh ),
|
BMesh( mesh ),
|
||||||
triMesh( NULL )
|
triMesh( NULL )
|
||||||
{
|
{
|
||||||
AssertValidMesh( );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------------
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue