diff options
author | Teravus Ovares | 2008-02-09 05:18:52 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-02-09 05:18:52 +0000 |
commit | c9b5516ca8664786d85a6c3f48bb831476050c6e (patch) | |
tree | d3912f3f2694ee4241e389dbee33fda57bdddada /OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | |
parent | * Tweaked timing of rapid mesh requests. Helps a race condition. (diff) | |
download | opensim-SC_OLD-c9b5516ca8664786d85a6c3f48bb831476050c6e.zip opensim-SC_OLD-c9b5516ca8664786d85a6c3f48bb831476050c6e.tar.gz opensim-SC_OLD-c9b5516ca8664786d85a6c3f48bb831476050c6e.tar.bz2 opensim-SC_OLD-c9b5516ca8664786d85a6c3f48bb831476050c6e.tar.xz |
* Adds Top Shear support to the Meshmerizer for the Cube prim and the Cylinder prim.
Diffstat (limited to 'OpenSim/Region/Physics/OdePlugin/OdePlugin.cs')
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs index 0ee8eb5..2b3d186 100644 --- a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs +++ b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | |||
@@ -1014,6 +1014,9 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1014 | if ((pbs.PathScaleX != 100) || (pbs.PathScaleY != 100)) | 1014 | if ((pbs.PathScaleX != 100) || (pbs.PathScaleY != 100)) |
1015 | return true; | 1015 | return true; |
1016 | 1016 | ||
1017 | if ((pbs.PathShearX != 0) || (pbs.PathShearY != 0)) | ||
1018 | return true; | ||
1019 | |||
1017 | if (pbs.ProfileShape == ProfileShape.Circle && pbs.PathCurve == (byte)Extrusion.Straight) | 1020 | if (pbs.ProfileShape == ProfileShape.Circle && pbs.PathCurve == (byte)Extrusion.Straight) |
1018 | return true; | 1021 | return true; |
1019 | 1022 | ||