diff options
author | Dahlia Trimble | 2009-04-05 19:25:39 +0000 |
---|---|---|
committer | Dahlia Trimble | 2009-04-05 19:25:39 +0000 |
commit | f73d4f97356aad2a864c37253c466c56c651d264 (patch) | |
tree | ffb8467d218d58580aaaf724ab308da358985398 /OpenSim/Region/Physics | |
parent | And another fix for the windows build (diff) | |
download | opensim-SC_OLD-f73d4f97356aad2a864c37253c466c56c651d264.zip opensim-SC_OLD-f73d4f97356aad2a864c37253c466c56c651d264.tar.gz opensim-SC_OLD-f73d4f97356aad2a864c37253c466c56c651d264.tar.bz2 opensim-SC_OLD-f73d4f97356aad2a864c37253c466c56c651d264.tar.xz |
unspecified sculpt stitching mode now defaults to plane instead of sphere. Addresses Mantis #3403
Diffstat (limited to 'OpenSim/Region/Physics')
-rw-r--r-- | OpenSim/Region/Physics/Meshing/Meshmerizer.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/Meshing/Meshmerizer.cs b/OpenSim/Region/Physics/Meshing/Meshmerizer.cs index 8c9836e..5d227dc 100644 --- a/OpenSim/Region/Physics/Meshing/Meshmerizer.cs +++ b/OpenSim/Region/Physics/Meshing/Meshmerizer.cs | |||
@@ -215,9 +215,11 @@ namespace OpenSim.Region.Physics.Meshing | |||
215 | sculptType = PrimMesher.SculptMesh.SculptType.torus; | 215 | sculptType = PrimMesher.SculptMesh.SculptType.torus; |
216 | break; | 216 | break; |
217 | case OpenMetaverse.SculptType.Sphere: | 217 | case OpenMetaverse.SculptType.Sphere: |
218 | default: | ||
219 | sculptType = PrimMesher.SculptMesh.SculptType.sphere; | 218 | sculptType = PrimMesher.SculptMesh.SculptType.sphere; |
220 | break; | 219 | break; |
220 | default: | ||
221 | sculptType = PrimMesher.SculptMesh.SculptType.plane; | ||
222 | break; | ||
221 | } | 223 | } |
222 | 224 | ||
223 | bool mirror = ((primShape.SculptType & 128) != 0); | 225 | bool mirror = ((primShape.SculptType & 128) != 0); |