From 43b5406b93cfba54b777912cd87fb7e025fb7f2e Mon Sep 17 00:00:00 2001 From: Quaternions Date: Thu, 31 Aug 2023 00:54:50 -0700 Subject: [PATCH] double gravity --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 83f3312..99bbe59 100644 --- a/src/main.rs +++ b/src/main.rs @@ -209,7 +209,7 @@ impl strafe_client::framework::Example for Skybox { time: Instant::now(), pos: glam::Vec3 { x: 5.0, y: 5.0, z: 5.0 }, vel: glam::Vec3 { x: 0.0, y: 0.0, z: 0.0 }, - gravity: glam::Vec3 { x: 0.0, y: -50.0, z: 0.0 }, + gravity: glam::Vec3 { x: 0.0, y: -100.0, z: 0.0 }, screen_size: (config.width, config.height), pitch: 0.0, yaw: 0.0,