From d89e7beb88f4e7b13fcf93b96cfc026f856308c5 Mon Sep 17 00:00:00 2001 From: sigonasr2 Date: Fri, 3 Jun 2022 15:32:32 -0500 Subject: [PATCH] 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 --- maps/world1.map | Bin 295488 -> 295488 bytes src/sig/objects/Player.java | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/maps/world1.map b/maps/world1.map index 25705bb00c21c7c4121888101778d4fce5a27a73..656ba99127a5c3eb9dc42ef75521489b15145c85 100644 GIT binary patch delta 35 rcmX@mB6OfdsG)_ig{g&k3yVMlGZQn@^v#Vdy&Dw-8K-Y-Wa$S0*J}%` delta 30 mcmX@mB6OfdsG)_ig{g&k3yVMlGb01jM!|WE(>FG<^aB8&ISI-D diff --git a/src/sig/objects/Player.java b/src/sig/objects/Player.java index 325706f..db5a635 100644 --- a/src/sig/objects/Player.java +++ b/src/sig/objects/Player.java @@ -27,7 +27,7 @@ public class Player extends Object{ double horizontal_drag = 2000; double horizontal_friction = NORMAL_FRICTION; double horizontal_air_drag = 600; - double horizontal_air_friction = 20; + double horizontal_air_friction = 180; double jump_velocity = -400;