mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-04 19:45:36 +00:00
Ugly hack: don't reset player idle and movement animations in first person view
This commit is contained in:
parent
77fb4d6dd2
commit
d2cad229f8
1 changed files with 1 additions and 1 deletions
|
@ -356,7 +356,7 @@ void CharacterController::refreshJumpAnims(const WeaponInfo* weap, JumpingState
|
|||
if (!force && jump == mJumpState && idle == CharState_None && movement == CharState_None)
|
||||
return;
|
||||
|
||||
if (jump != JumpState_None)
|
||||
if (jump != JumpState_None && !(mPtr == MWMechanics::getPlayer() && MWBase::Environment::get().getWorld()->isFirstPerson())) // FIXME
|
||||
{
|
||||
idle = CharState_None;
|
||||
movement = CharState_None;
|
||||
|
|
Loading…
Reference in a new issue