mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-04 23:12:15 +00:00
- Blood: Don't attenuate view rolling when swimming.
* Blood's input and drag system is much more developed than the other games and further attenuation is not needed here.
This commit is contained in:
parent
9ad0af4479
commit
ce236c795f
1 changed files with 1 additions and 1 deletions
|
@ -6054,7 +6054,7 @@ static void actCheckDudes()
|
|||
nDrag -= Scale(nDrag, (double)actor->xspr.height, 256.);
|
||||
|
||||
constexpr auto maxVel = (36211. / 3000.);
|
||||
pPlayer->Angles.doRollInput(&pPlayer->input, actor->vel.XY(), maxVel, pPlayer->posture == kPostureSwim);
|
||||
pPlayer->Angles.doRollInput(&pPlayer->input, actor->vel.XY(), maxVel, false);
|
||||
pPlayer->Angles.StrafeVel -= pPlayer->Angles.StrafeVel * nDrag;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue