aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorTeravus Ovares2008-02-08 23:48:27 +0000
committerTeravus Ovares2008-02-08 23:48:27 +0000
commitbb5b88d161b3af77ee2c5f467ef2685ea895c924 (patch)
treef8569d32a4f8f902c44983c3e21ea209861877a3
parent* Stop asset transactions hanging around after they've completed (diff)
downloadopensim-SC_OLD-bb5b88d161b3af77ee2c5f467ef2685ea895c924.zip
opensim-SC_OLD-bb5b88d161b3af77ee2c5f467ef2685ea895c924.tar.gz
opensim-SC_OLD-bb5b88d161b3af77ee2c5f467ef2685ea895c924.tar.bz2
opensim-SC_OLD-bb5b88d161b3af77ee2c5f467ef2685ea895c924.tar.xz
* Fixed a situation in ODE where it didn't call the mesher on a cube when you tapered if you didn't have a cut or a hollow.
-rw-r--r--OpenSim/Region/Physics/OdePlugin/OdePlugin.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs
index 37b8fb9..0ee8eb5 100644
--- a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs
+++ b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs
@@ -1011,6 +1011,9 @@ namespace OpenSim.Region.Physics.OdePlugin
1011 if ((pbs.ProfileBegin != 0) || pbs.ProfileEnd != 0) 1011 if ((pbs.ProfileBegin != 0) || pbs.ProfileEnd != 0)
1012 return true; 1012 return true;
1013 1013
1014 if ((pbs.PathScaleX != 100) || (pbs.PathScaleY != 100))
1015 return true;
1016
1014 if (pbs.ProfileShape == ProfileShape.Circle && pbs.PathCurve == (byte)Extrusion.Straight) 1017 if (pbs.ProfileShape == ProfileShape.Circle && pbs.PathCurve == (byte)Extrusion.Straight)
1015 return true; 1018 return true;
1016 1019