From 3c0bc7b64574bf34e43bdb2e475ad705beb3a14e Mon Sep 17 00:00:00 2001 From: Joseph DiGiovanni Date: Tue, 25 Feb 2025 16:52:10 -0500 Subject: [PATCH] Make falling platform frame rate independent --- objects/platform_falling.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/platform_falling.gd b/objects/platform_falling.gd index 81b2dda..dd95e1f 100644 --- a/objects/platform_falling.gd +++ b/objects/platform_falling.gd @@ -12,7 +12,7 @@ func _process(delta): queue_free() # Remove platform if below threshold if falling: - gravity += 0.25 + gravity += 15.0 * delta func _on_body_entered(_body):