From 3eb64dd9ddd7a2fcdce9045362a5ef9fe224a163 Mon Sep 17 00:00:00 2001 From: Kelsi Date: Sun, 8 Feb 2026 17:51:35 -0800 Subject: [PATCH] Stop falling through the damn ramps :P --- src/rendering/camera_controller.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rendering/camera_controller.cpp b/src/rendering/camera_controller.cpp index 7e61851b..56f0c0b0 100644 --- a/src/rendering/camera_controller.cpp +++ b/src/rendering/camera_controller.cpp @@ -527,7 +527,8 @@ void CameraController::update(float deltaTime) { hasRealGround_ = true; noGroundTimer_ = 0.0f; float feetZ = targetPos.z; - float stepUp = 1.0f; + float stepUp = stepUpBudget; + stepUp += 0.05f; float fallCatch = 3.0f; float dz = *groundH - feetZ;