Tweak player physics to be closer to how 1.5 on WON feels. Disable airstepping.
This commit is contained in:
parent
3ffd8262b9
commit
91c70269f6
2 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
#define PMOVE_STEPHEIGHT 18
|
||||
#define PMOVE_AIRSTEPHEIGHT 18
|
||||
#define PMOVE_AIRSTEPHEIGHT 0
|
||||
#define PMOVE_FRICTION 4
|
||||
#define PMOVE_EDGEFRICTION 1
|
||||
#define PMOVE_STOPSPEED 75
|
||||
|
|
|
@ -147,6 +147,6 @@ player::Physics_Jump(void)
|
|||
} else {
|
||||
/* slow the player down a bit to prevent bhopping like crazy */
|
||||
velocity *= 0.80f;
|
||||
velocity[2] += 200;
|
||||
velocity[2] += 260;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue