From cb5b780534626beca682c8a5391f8a025d3e76d6 Mon Sep 17 00:00:00 2001 From: Cameron Reikes Date: Fri, 3 Feb 2023 17:47:03 -0800 Subject: [PATCH] Forgot mass in gravity force --- physics.jai | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/physics.jai b/physics.jai index 238e373..87164b0 100644 --- a/physics.jai +++ b/physics.jai @@ -267,7 +267,7 @@ main :: () { } // gravity - it.force.y += -9.81; + it.force.y += -9.81 * it.shape.mass; if !it.static {