Meshmerizer: remember to add the copied hull verts to the list of hulls.

This commit is contained in:
Robert Adams
2013-05-24 16:32:19 -07:00
parent 5f1f5ea5ab
commit 1821372634

View File

@@ -893,6 +893,7 @@ namespace OpenSim.Region.Physics.Meshing
List<Vector3> verts = new List<Vector3>();
foreach (var vert in hull)
verts.Add(vert * size);
hulls.Add(verts);
}
return hulls;