diff options
author | Justin Clark-Casey (justincc) | 2013-05-23 23:07:46 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-05-23 23:07:46 +0100 |
commit | 0d5566e879074512f385890f32dd47a747e2f7b2 (patch) | |
tree | 6beaa5ab5a453ba36a4d0aefb1da7043f93cff7a /OpenSim/Region/Physics/BulletSPlugin/BSCharacter.cs | |
parent | Fix bug where both ordinary UserManagementModule and HGUserManagementModules ... (diff) | |
parent | Add DEBUG level logging in Meshmerizer for mesh parsing. There is (diff) | |
download | opensim-SC-0d5566e879074512f385890f32dd47a747e2f7b2.zip opensim-SC-0d5566e879074512f385890f32dd47a747e2f7b2.tar.gz opensim-SC-0d5566e879074512f385890f32dd47a747e2f7b2.tar.bz2 opensim-SC-0d5566e879074512f385890f32dd47a747e2f7b2.tar.xz |
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Physics/BulletSPlugin/BSCharacter.cs | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/OpenSim/Region/Physics/BulletSPlugin/BSCharacter.cs b/OpenSim/Region/Physics/BulletSPlugin/BSCharacter.cs index ff5b6ab..48f842e 100644 --- a/OpenSim/Region/Physics/BulletSPlugin/BSCharacter.cs +++ b/OpenSim/Region/Physics/BulletSPlugin/BSCharacter.cs | |||
@@ -483,8 +483,15 @@ public sealed class BSCharacter : BSPhysObject | |||
483 | { | 483 | { |
484 | // Bullet assumes we know what we are doing when forcing orientation | 484 | // Bullet assumes we know what we are doing when forcing orientation |
485 | // so it lets us go against all the rules and just compensates for them later. | 485 | // so it lets us go against all the rules and just compensates for them later. |
486 | // This keeps us from flipping the capsule over which the veiwer does not understand. | 486 | // This forces rotation to be only around the Z axis and doesn't change any of the other axis. |
487 | ForceOrientation = new OMV.Quaternion(0, 0, _orientation.Z,0); | 487 | // This keeps us from flipping the capsule over which the veiwer does not understand. |
488 | float oRoll, oPitch, oYaw; | ||
489 | _orientation.GetEulerAngles(out oRoll, out oPitch, out oYaw); | ||
490 | OMV.Quaternion trimmedOrientation = OMV.Quaternion.CreateFromEulers(0f, 0f, oYaw); | ||
491 | // DetailLog("{0},BSCharacter.setOrientation,taint,val={1},valDir={2},conv={3},convDir={4}", | ||
492 | // LocalID, _orientation, OMV.Vector3.UnitX * _orientation, | ||
493 | // trimmedOrientation, OMV.Vector3.UnitX * trimmedOrientation); | ||
494 | ForceOrientation = trimmedOrientation; | ||
488 | }); | 495 | }); |
489 | } | 496 | } |
490 | } | 497 | } |