aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/UbitOdePlugin
diff options
context:
space:
mode:
authorubit2013-01-02 23:00:11 +0100
committerubit2013-01-02 23:00:11 +0100
commitdbe8e90a17b17a99644f746b3889befe5b21457a (patch)
tree7ca8b97c359f34845af80cd142782a60c177d141 /OpenSim/Region/Physics/UbitOdePlugin
parentMerge branch 'ubitwork' of ssh://3dhosting.de/var/git/careminster into ubitwork (diff)
parenti try to fix avatar orientation in some cases.. (diff)
downloadopensim-SC-dbe8e90a17b17a99644f746b3889befe5b21457a.zip
opensim-SC-dbe8e90a17b17a99644f746b3889befe5b21457a.tar.gz
opensim-SC-dbe8e90a17b17a99644f746b3889befe5b21457a.tar.bz2
opensim-SC-dbe8e90a17b17a99644f746b3889befe5b21457a.tar.xz
Merge branch 'ubitwork' of ssh://3dhosting.de/var/git/careminster into ubitwork
Diffstat (limited to 'OpenSim/Region/Physics/UbitOdePlugin')
-rw-r--r--OpenSim/Region/Physics/UbitOdePlugin/ODESitAvatar.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Physics/UbitOdePlugin/ODESitAvatar.cs b/OpenSim/Region/Physics/UbitOdePlugin/ODESitAvatar.cs
index 9e23763..d6f6681 100644
--- a/OpenSim/Region/Physics/UbitOdePlugin/ODESitAvatar.cs
+++ b/OpenSim/Region/Physics/UbitOdePlugin/ODESitAvatar.cs
@@ -233,8 +233,8 @@ namespace OpenSim.Region.Physics.OdePlugin
233 norm = rayResults[0].Normal; 233 norm = rayResults[0].Normal;
234 edgeNormalX = norm.X; 234 edgeNormalX = norm.X;
235 edgeNormalY = norm.Y; 235 edgeNormalY = norm.Y;
236 edgeDirX = rayDir.X; 236 edgeDirX = -rayDir.X;
237 edgeDirY = rayDir.Y; 237 edgeDirY = -rayDir.Y;
238 } 238 }
239 else 239 else
240 { 240 {