cosmetics

This commit is contained in:
UbitUmarov
2025-11-25 17:45:06 +00:00
parent 2db1fabd10
commit c71e61dfd6
5 changed files with 49 additions and 45 deletions

View File

@@ -433,7 +433,13 @@ namespace OpenSim.Region.CoreModules.World.Warp3DMap
delegate (SceneObjectGroup group)
{
foreach (SceneObjectPart child in group.Parts)
CreatePrim(renderer, child);
{
try { CreatePrim(renderer, child); }
catch (Exception e)
{
m_log.Warn($"[Warp3D] failed to render prim {child.Name} at {child.GetWorldPosition()}: {e.Message}");
}
}
}
);
}