diff options
author | Melanie | 2012-07-27 03:24:45 +0200 |
---|---|---|
committer | Melanie | 2012-07-27 03:24:45 +0200 |
commit | be22e3599cece284f981d0a98224dd563c3d933f (patch) | |
tree | 8eaa86c61a82f136a327de0d2ae450f30c1afceb | |
parent | Allow load and save of IAR without a password. The password must still be (diff) | |
download | opensim-SC_OLD-be22e3599cece284f981d0a98224dd563c3d933f.zip opensim-SC_OLD-be22e3599cece284f981d0a98224dd563c3d933f.tar.gz opensim-SC_OLD-be22e3599cece284f981d0a98224dd563c3d933f.tar.bz2 opensim-SC_OLD-be22e3599cece284f981d0a98224dd563c3d933f.tar.xz |
Change the stair fudge factor so steps of 0.5m can be climbled to match inworldz claims and SL's realities
-rw-r--r-- | OpenSim/Region/Physics/UbitOdePlugin/OdeScene.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Physics/UbitOdePlugin/OdeScene.cs b/OpenSim/Region/Physics/UbitOdePlugin/OdeScene.cs index a554897..f3ac3ca 100644 --- a/OpenSim/Region/Physics/UbitOdePlugin/OdeScene.cs +++ b/OpenSim/Region/Physics/UbitOdePlugin/OdeScene.cs | |||
@@ -1027,7 +1027,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1027 | { | 1027 | { |
1028 | d.AABB aabb; | 1028 | d.AABB aabb; |
1029 | d.GeomGetAABB(g2, out aabb); | 1029 | d.GeomGetAABB(g2, out aabb); |
1030 | float tmp = vtmp.Z - sz * .25f; | 1030 | float tmp = vtmp.Z - sz * .18f; |
1031 | 1031 | ||
1032 | if (aabb.MaxZ < tmp) | 1032 | if (aabb.MaxZ < tmp) |
1033 | { | 1033 | { |
@@ -1057,7 +1057,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1057 | { | 1057 | { |
1058 | d.AABB aabb; | 1058 | d.AABB aabb; |
1059 | d.GeomGetAABB(g1, out aabb); | 1059 | d.GeomGetAABB(g1, out aabb); |
1060 | float tmp = vtmp.Z - sz * .25f; | 1060 | float tmp = vtmp.Z - sz * .18f; |
1061 | 1061 | ||
1062 | if (aabb.MaxZ < tmp) | 1062 | if (aabb.MaxZ < tmp) |
1063 | { | 1063 | { |