Browse Source

Fix horizontal mouse-look while standing still.

Christian Walther 12 years ago committed by Adam Johnson
parent
commit
5522a10a0c
  1. 10
      Sources/Plasma/PubUtilLib/plAvatar/plPhysicalControllerCore.cpp

10
Sources/Plasma/PubUtilLib/plAvatar/plPhysicalControllerCore.cpp

@ -253,11 +253,6 @@ void plAnimatedMovementStrategy::RecalcVelocity(double timeNow, float elapsed, b
IRecalcLinearVelocity(elapsed, prevMat, curMat);
IRecalcAngularVelocity(elapsed, prevMat, curMat);
// Update controller rotation
float zRot = fAnimAngularVel + fTurnStr;
if (hsABS(zRot) > 0.0001f)
fController->IncrementAngle(zRot * elapsed);
}
else
{
@ -265,6 +260,11 @@ void plAnimatedMovementStrategy::RecalcVelocity(double timeNow, float elapsed, b
fAnimAngularVel = 0.0f;
}
// Update controller rotation
float zRot = fAnimAngularVel + fTurnStr;
if (hsABS(zRot) > 0.0001f)
fController->IncrementAngle(zRot * elapsed);
// Update controller velocity
fController->SetLinearVelocity(fAnimLinearVel);
}

Loading…
Cancel
Save