Avoid throwing errors when adding existing meshes to the render scene
parent
da6816c805
commit
e55e93c994
|
@ -352,6 +352,12 @@ namespace OpenSim.Region.CoreModules.World.Warp3DMap
|
||||||
Face face = renderMesh.Faces[i];
|
Face face = renderMesh.Faces[i];
|
||||||
string meshName = primID + "-Face-" + i.ToString();
|
string meshName = primID + "-Face-" + i.ToString();
|
||||||
|
|
||||||
|
// Avoid adding duplicate meshes to the scene
|
||||||
|
if (renderer.Scene.objectData.ContainsKey(meshName))
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
warp_Object faceObj = new warp_Object(face.Vertices.Count, face.Indices.Count / 3);
|
warp_Object faceObj = new warp_Object(face.Vertices.Count, face.Indices.Count / 3);
|
||||||
|
|
||||||
for (int j = 0; j < face.Vertices.Count; j++)
|
for (int j = 0; j < face.Vertices.Count; j++)
|
||||||
|
|
Loading…
Reference in New Issue