Make falling platform frame rate independent

pull/25/head
Joseph DiGiovanni 2025-02-25 16:52:10 +07:00
parent 9c1ca24b12
commit 3c0bc7b645
1 changed files with 1 additions and 1 deletions

@ -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):