Revert "Catch meshing error in Meshmerizer"

This reverts commit 8f2986bc6a.

In favor of a fix that tells us where the issue is instead of eating the error
avinationmerge
Melanie Thielker 2010-08-03 05:25:01 +02:00
parent ecfea5fa69
commit d2d1c63b17
1 changed files with 7 additions and 15 deletions

View File

@ -336,24 +336,16 @@ namespace OpenSim.Region.Physics.Meshing
bool mirror = ((primShape.SculptType & 128) != 0);
bool invert = ((primShape.SculptType & 64) != 0);
try
{
sculptMesh = new PrimMesher.SculptMesh((Bitmap)idata, sculptType, (int)lod, false, mirror, invert);
sculptMesh = new PrimMesher.SculptMesh((Bitmap)idata, sculptType, (int)lod, false, mirror, invert);
idata.Dispose();
idata.Dispose();
sculptMesh.DumpRaw(baseDir, primName, "primMesh");
sculptMesh.DumpRaw(baseDir, primName, "primMesh");
sculptMesh.Scale(size.X, size.Y, size.Z);
sculptMesh.Scale(size.X, size.Y, size.Z);
coords = sculptMesh.coords;
faces = sculptMesh.faces;
}
catch(Exception ex)
{
m_log.Error("[Meshing]: Unable to generate a Sculpty mesh. " + ex.Message);
return null;
}
coords = sculptMesh.coords;
faces = sculptMesh.faces;
}
else
{