mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix some low-hanging comments
This commit is contained in:
parent
36c2f19bc4
commit
b81fdef870
1 changed files with 2 additions and 2 deletions
|
|
@ -577,14 +577,14 @@ fixed_t K_BotRubberband(const player_t *player)
|
|||
const fixed_t difficultyEase = ((player->botvars.difficulty - 1) * FRACUNIT) / (MAXBOTDIFFICULTY - 1);
|
||||
|
||||
// Lv. 1: x0.65 avg
|
||||
// Lv. MAX: x1.1 avg
|
||||
// Lv. MAX: x1.05 avg
|
||||
const fixed_t rubberBase = Easing_OutSine(
|
||||
difficultyEase,
|
||||
FRACUNIT * 65 / 100,
|
||||
FRACUNIT * 105 / 100
|
||||
);
|
||||
|
||||
// +/- x0.25
|
||||
// +/- x0.35
|
||||
const fixed_t rubberStretchiness = FixedMul(
|
||||
FixedDiv(
|
||||
35 * FRACUNIT / 100,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue