diff options
author | Teravus Ovares | 2008-04-10 00:31:44 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-04-10 00:31:44 +0000 |
commit | b85624db1832c54ea2a8b3d53d93b8ca60a18a38 (patch) | |
tree | c6f831b8aa53c2a9c1b5dfbbc95dffa6e5c4607d /OpenSim/Region/Physics/OdePlugin | |
parent | Update svn properties. (diff) | |
download | opensim-SC_OLD-b85624db1832c54ea2a8b3d53d93b8ca60a18a38.zip opensim-SC_OLD-b85624db1832c54ea2a8b3d53d93b8ca60a18a38.tar.gz opensim-SC_OLD-b85624db1832c54ea2a8b3d53d93b8ca60a18a38.tar.bz2 opensim-SC_OLD-b85624db1832c54ea2a8b3d53d93b8ca60a18a38.tar.xz |
* Adds twist support for Cubes, Cylinders, and Prisms in the Meshmerizer
* A tweak of the SimStatsReporter so it would report the prim capacity to be 45000.
Diffstat (limited to 'OpenSim/Region/Physics/OdePlugin')
-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 9b8f4af..fa128de 100644 --- a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs +++ b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | |||
@@ -1438,6 +1438,9 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1438 | if (pbs.ProfileHollow != 0) | 1438 | if (pbs.ProfileHollow != 0) |
1439 | return true; | 1439 | return true; |
1440 | 1440 | ||
1441 | if (((Int16)pbs.PathTwistBegin != 0) || ((Int16)pbs.PathTwist != 0)) | ||
1442 | return true; | ||
1443 | |||
1441 | if ((pbs.ProfileBegin != 0) || pbs.ProfileEnd != 0) | 1444 | if ((pbs.ProfileBegin != 0) || pbs.ProfileEnd != 0) |
1442 | return true; | 1445 | return true; |
1443 | 1446 | ||