aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/UbitOdePlugin/ODEPrim.cs
diff options
context:
space:
mode:
authorUbitUmarov2012-05-21 12:35:17 +0100
committerUbitUmarov2012-05-21 12:35:17 +0100
commit85f578999320ab4b3b87d99c6901e7dfc86f8cc3 (patch)
treea208de009fde1bf3ef6264bde29e562bb8847a53 /OpenSim/Region/Physics/UbitOdePlugin/ODEPrim.cs
parent missing update script events call (diff)
downloadopensim-SC_OLD-85f578999320ab4b3b87d99c6901e7dfc86f8cc3.zip
opensim-SC_OLD-85f578999320ab4b3b87d99c6901e7dfc86f8cc3.tar.gz
opensim-SC_OLD-85f578999320ab4b3b87d99c6901e7dfc86f8cc3.tar.bz2
opensim-SC_OLD-85f578999320ab4b3b87d99c6901e7dfc86f8cc3.tar.xz
try to let avas climb higher steps. Will only work in some cases, may have bad effects, so needs some more testing
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Physics/UbitOdePlugin/ODEPrim.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/UbitOdePlugin/ODEPrim.cs b/OpenSim/Region/Physics/UbitOdePlugin/ODEPrim.cs
index 62fd279..459cd27 100644
--- a/OpenSim/Region/Physics/UbitOdePlugin/ODEPrim.cs
+++ b/OpenSim/Region/Physics/UbitOdePlugin/ODEPrim.cs
@@ -2562,10 +2562,10 @@ namespace OpenSim.Region.Physics.OdePlugin
2562 { 2562 {
2563 d.Quaternion qtmp; 2563 d.Quaternion qtmp;
2564 d.GeomCopyQuaternion(prim_geom, out qtmp); 2564 d.GeomCopyQuaternion(prim_geom, out qtmp);
2565 _orientation.W = qtmp.W;
2566 _orientation.X = qtmp.X; 2565 _orientation.X = qtmp.X;
2567 _orientation.Y = qtmp.Y; 2566 _orientation.Y = qtmp.Y;
2568 _orientation.Z = qtmp.Z; 2567 _orientation.Z = qtmp.Z;
2568 _orientation.W = qtmp.W;
2569 2569
2570 d.Vector3 lpos = d.GeomGetPosition(prim_geom); 2570 d.Vector3 lpos = d.GeomGetPosition(prim_geom);
2571 _position.X = lpos.X; 2571 _position.X = lpos.X;