Hunting for the problem in #4777

0.7-release
Diva Canto 2010-06-19 09:44:02 -07:00
parent 9b410f5e94
commit 1e7ce6dbce
2 changed files with 5 additions and 0 deletions

View File

@ -1487,6 +1487,10 @@ namespace OpenSim.Region.Framework.Scenes
DoPhysicsPropertyUpdate(RigidBody, true); DoPhysicsPropertyUpdate(RigidBody, true);
PhysActor.SetVolumeDetect(VolumeDetectActive ? 1 : 0); PhysActor.SetVolumeDetect(VolumeDetectActive ? 1 : 0);
} }
else
{
m_log.DebugFormat("[SPEW]: physics actor is null for {0} with parent {1}", UUID, this.ParentGroup.UUID);
}
} }
} }
} }

View File

@ -1781,6 +1781,7 @@ namespace OpenSim.Region.Physics.OdePlugin
m_log.ErrorFormat("[PHYSICS]: Exception while meshing prim {0}.", primName); m_log.ErrorFormat("[PHYSICS]: Exception while meshing prim {0}.", primName);
m_log.Debug(e.ToString()); m_log.Debug(e.ToString());
mesh = null; mesh = null;
return null;
} }
} }