unspecified sculpt stitching mode now defaults to plane instead of sphere. Addresses Mantis #3403
parent
ae98a12235
commit
f73d4f9735
|
@ -215,9 +215,11 @@ namespace OpenSim.Region.Physics.Meshing
|
|||
sculptType = PrimMesher.SculptMesh.SculptType.torus;
|
||||
break;
|
||||
case OpenMetaverse.SculptType.Sphere:
|
||||
default:
|
||||
sculptType = PrimMesher.SculptMesh.SculptType.sphere;
|
||||
break;
|
||||
default:
|
||||
sculptType = PrimMesher.SculptMesh.SculptType.plane;
|
||||
break;
|
||||
}
|
||||
|
||||
bool mirror = ((primShape.SculptType & 128) != 0);
|
||||
|
|
Loading…
Reference in New Issue