Move camera Z slightly faster
RR has more & taller slopes than SRB2K, so the old values were a bit jarring (you go off-screen a LOT more often)
This commit is contained in:
parent
467e014565
commit
841b52eb98
1 changed files with 1 additions and 1 deletions
|
|
@ -3546,7 +3546,7 @@ boolean P_MoveChaseCamera(player_t *player, camera_t *thiscam, boolean resetcall
|
|||
{
|
||||
thiscam->momx = x - thiscam->x;
|
||||
thiscam->momy = y - thiscam->y;
|
||||
thiscam->momz = FixedMul(z - thiscam->z, camspeed/2);
|
||||
thiscam->momz = FixedMul(z - thiscam->z, camspeed*3/5);
|
||||
}
|
||||
|
||||
thiscam->pan = pan;
|
||||
|
|
|
|||
Loading…
Reference in a new issue