mirror of
https://github.com/OpenMW/openmw.git
synced 2025-03-27 03:40:24 +00:00
CLEANUP(character.cpp): Replace usages of biped function with isBiped var
This commit is contained in:
parent
33cd654bf5
commit
cac5ae34a5
1 changed files with 2 additions and 2 deletions
|
@ -2287,7 +2287,7 @@ namespace MWMechanics
|
||||||
|
|
||||||
// It seems only bipedal actors use turning animations.
|
// It seems only bipedal actors use turning animations.
|
||||||
// Also do not use turning animations in the first-person view and when sneaking.
|
// Also do not use turning animations in the first-person view and when sneaking.
|
||||||
if (!sneak && !isFirstPersonPlayer && mPtr.getClass().isBipedal(mPtr))
|
if (!sneak && !isFirstPersonPlayer && isBiped)
|
||||||
{
|
{
|
||||||
if (effectiveRotation > rotationThreshold)
|
if (effectiveRotation > rotationThreshold)
|
||||||
movestate = inwater ? CharState_SwimTurnRight : CharState_TurnRight;
|
movestate = inwater ? CharState_SwimTurnRight : CharState_TurnRight;
|
||||||
|
@ -2331,7 +2331,7 @@ namespace MWMechanics
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (mPtr.getClass().isBipedal(mPtr))
|
if (isBiped)
|
||||||
{
|
{
|
||||||
if (mTurnAnimationThreshold > 0)
|
if (mTurnAnimationThreshold > 0)
|
||||||
mTurnAnimationThreshold -= duration;
|
mTurnAnimationThreshold -= duration;
|
||||||
|
|
Loading…
Reference in a new issue