diff options
author | Teravus Ovares | 2008-02-19 08:49:38 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-02-19 08:49:38 +0000 |
commit | e789a6bc9b14a8f57b6802a265ca404d389030bc (patch) | |
tree | 67b8267511d1f80ed9aec5cabc4bbbb76be5d7ea /OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | |
parent | More distinct startup logo + include the link to FAQ. (diff) | |
download | opensim-SC_OLD-e789a6bc9b14a8f57b6802a265ca404d389030bc.zip opensim-SC_OLD-e789a6bc9b14a8f57b6802a265ca404d389030bc.tar.gz opensim-SC_OLD-e789a6bc9b14a8f57b6802a265ca404d389030bc.tar.bz2 opensim-SC_OLD-e789a6bc9b14a8f57b6802a265ca404d389030bc.tar.xz |
* This patch adds Prism support to the Meshmerizer. Prism is one of the object types in the drop down on the object tab. Positive tapers are slightly incorrect(prim sinks into ground a tiny bit). Everything else that's supported works as expected. Hollow, cut, negative tapers, top shear.
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 3817868..0cfb5ff 100644 --- a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs +++ b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | |||
@@ -1165,6 +1165,9 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1165 | if (pbs.ProfileShape == ProfileShape.Circle && pbs.PathCurve == (byte)Extrusion.Straight) | 1165 | if (pbs.ProfileShape == ProfileShape.Circle && pbs.PathCurve == (byte)Extrusion.Straight) |
1166 | return true; | 1166 | return true; |
1167 | 1167 | ||
1168 | if (pbs.ProfileShape == ProfileShape.EquilateralTriangle) | ||
1169 | return true; | ||
1170 | |||
1168 | return false; | 1171 | return false; |
1169 | } | 1172 | } |
1170 | 1173 | ||