From 534e2318e18613fc37e8ca3fa989e8c108de71bf Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sat, 28 Sep 2024 22:30:58 +0100 Subject: [PATCH] Increase movement speed --- src/main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cc b/src/main.cc index 00e6ac5..1ea129d 100644 --- a/src/main.cc +++ b/src/main.cc @@ -175,7 +175,7 @@ int init(App &app) { glGetString(GL_SHADING_LANGUAGE_VERSION) ); - app.speed = 0.02f; + app.speed = 0.04f; app.translation = glm::translate(glm::mat4(1.0f), glm::vec3(0.0f, 0.0f, 1.5f)); app.rotation = glm::mat4(1.0f); app.scale = glm::mat4(1.0f);