diff options
author | UbitUmarov | 2012-05-21 12:35:17 +0100 |
---|---|---|
committer | UbitUmarov | 2012-05-21 12:35:17 +0100 |
commit | 85f578999320ab4b3b87d99c6901e7dfc86f8cc3 (patch) | |
tree | a208de009fde1bf3ef6264bde29e562bb8847a53 /OpenSim/Region/Physics/UbitOdePlugin/ODEPrim.cs | |
parent | missing update script events call (diff) | |
download | opensim-SC-85f578999320ab4b3b87d99c6901e7dfc86f8cc3.zip opensim-SC-85f578999320ab4b3b87d99c6901e7dfc86f8cc3.tar.gz opensim-SC-85f578999320ab4b3b87d99c6901e7dfc86f8cc3.tar.bz2 opensim-SC-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.cs | 2 |
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; |