mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Increase default horzlag to 3
This value is closer to how the old value felt before the tracking was improved.
This commit is contained in:
parent
d1d9a5bd10
commit
0e60a3ef26
2 changed files with 2 additions and 2 deletions
|
|
@ -3825,7 +3825,7 @@ void readfollower(MYFILE *f)
|
|||
followers[numfollowers].dist = 32*FRACUNIT; // changed from 16 to 32 to better account for ogl models
|
||||
followers[numfollowers].height = 16*FRACUNIT;
|
||||
followers[numfollowers].zoffs = 32*FRACUNIT;
|
||||
followers[numfollowers].horzlag = 2*FRACUNIT;
|
||||
followers[numfollowers].horzlag = 3*FRACUNIT;
|
||||
followers[numfollowers].vertlag = 6*FRACUNIT;
|
||||
followers[numfollowers].anglelag = 8*FRACUNIT;
|
||||
followers[numfollowers].bobspeed = TICRATE*2;
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ typedef struct follower_s
|
|||
|
||||
// movement options
|
||||
|
||||
fixed_t horzlag; // Lag for X/Y displacement. Default is 2. Must be > 0 because we divide by this number.
|
||||
fixed_t horzlag; // Lag for X/Y displacement. Default is 3. Must be > 0 because we divide by this number.
|
||||
fixed_t vertlag; // Z displacement lag. Default is 6. Must be > 0 because we divide by this number.
|
||||
fixed_t anglelag; // Angle rotation lag. Default is 8. Must be > 0 because we divide by this number.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue