From b04d68400b86445bb87c0cb7a0c49bd6f09d1564 Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Thu, 12 Dec 2019 15:20:08 -0500 Subject: [PATCH] tweak more physics constants GitOrigin-RevId: 3751ded02ecb26dd6110682ed615bd421f982c20 --- Jumpy.Shared/Player.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jumpy.Shared/Player.cs b/Jumpy.Shared/Player.cs index 3386096..2c28ef5 100644 --- a/Jumpy.Shared/Player.cs +++ b/Jumpy.Shared/Player.cs @@ -13,9 +13,9 @@ namespace Jumpy { private Texture2D texture; private const int spriteSize = 48; private const int spriteWidth = 7; - private const int moveSpeed = 150; - private const int jumpSpeed = 500; - private const int gravity = 1500; + private const int moveSpeed = 180; + private const int jumpSpeed = 600; + private const int gravity = 2400; private Point position = new Point(Camera.Width / 2, 10); private Facing facing = Facing.Right;