New physics! Slippery, they feel great

This commit is contained in:
KikooDX 2021-04-06 01:09:33 +02:00
parent 2ae52f334c
commit 0e459e2371
1 changed files with 4 additions and 4 deletions

View File

@ -6,14 +6,14 @@
#define TILE_HEIGHT 16
#define TARGET_FPS 30
#define TARGET_UPS 60
#define ACC_GND 0.5
#define ACC_AIR 0.2
#define MAX_HSPD 1.6
#define ACC_GND 0.1
#define ACC_AIR 0.025
#define MAX_HSPD 3.0
#define FRC_GND (ACC_GND / MAX_HSPD)
#define FRC_AIR (ACC_AIR / MAX_HSPD)
#define AIR_RES 0.02
#define GRAVITY 0.2
#define JUMP_SPD -4.2
#define JUMP_SPD -4.0
#define AIR_JMP_SPD -3.0
#define JUMP_BUFFER 10
#define JUMP_GRACE 10