Reverting my last two commits, putting back Melanie's exception handler. Doesn't solve #4777.
parent
2b76dba593
commit
9b410f5e94
|
@ -1772,7 +1772,16 @@ namespace OpenSim.Region.Physics.OdePlugin
|
||||||
|
|
||||||
if (needsMeshing(pbs))
|
if (needsMeshing(pbs))
|
||||||
{
|
{
|
||||||
mesh = mesher.CreateMesh(primName, pbs, size, 32f, isPhysical);
|
try
|
||||||
|
{
|
||||||
|
mesh = mesher.CreateMesh(primName, pbs, size, 32f, isPhysical);
|
||||||
|
}
|
||||||
|
catch(Exception e)
|
||||||
|
{
|
||||||
|
m_log.ErrorFormat("[PHYSICS]: Exception while meshing prim {0}.", primName);
|
||||||
|
m_log.Debug(e.ToString());
|
||||||
|
mesh = null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
result = AddPrim(primName, position, size, rotation, mesh, pbs, isPhysical);
|
result = AddPrim(primName, position, size, rotation, mesh, pbs, isPhysical);
|
||||||
|
|
Loading…
Reference in New Issue