Fix up the map view types and increase air friction a bit

Co-authored-by: r3cp3ct <45179536+r3cp3ct@users.noreply.github.com>
Co-authored-by: sigonasr2 <sigonasr2@gmail.com>
This commit is contained in:
sigonasr2 2022-06-03 15:32:32 -05:00
parent f026f64f92
commit d89e7beb88
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -27,7 +27,7 @@ public class Player extends Object{
double horizontal_drag = 2000; double horizontal_drag = 2000;
double horizontal_friction = NORMAL_FRICTION; double horizontal_friction = NORMAL_FRICTION;
double horizontal_air_drag = 600; double horizontal_air_drag = 600;
double horizontal_air_friction = 20; double horizontal_air_friction = 180;
double jump_velocity = -400; double jump_velocity = -400;