From bbdc6be85d2c5198923b69f2e8a956354cbcf778 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20F=C3=BCndgens?= Date: Fri, 19 Dec 2014 15:21:38 +0100 Subject: [PATCH] Also increased strength of the player ball. --- level.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/level.cc b/level.cc index 560937b..a787352 100644 --- a/level.cc +++ b/level.cc @@ -334,7 +334,7 @@ void Level::update(float runTime, glm::vec2 mouseDelta, bool wPressed, bool aPre camera.updateRotation(mouseDelta/100.0f); } - float str = 30; + float str = 100; if(wPressed){ physics.rollForward(camera.getVector(),str);