From 83dce5cb9222e9974eb3e1ad3bcea4bcc0399795 Mon Sep 17 00:00:00 2001 From: Foxar Date: Mon, 7 Dec 2020 20:09:17 +0100 Subject: [PATCH] Changed: Slowed player rotation speed. --- src/samples/dolphin/objects/player.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/samples/dolphin/objects/player.cpp b/src/samples/dolphin/objects/player.cpp index 87c4953..125a3a5 100755 --- a/src/samples/dolphin/objects/player.cpp +++ b/src/samples/dolphin/objects/player.cpp @@ -45,9 +45,9 @@ void Player::update(Pad &t_pad) velocity = -1; if (t_pad.lJoyH >= 200) - mesh.rotation.z -= 0.1; + mesh.rotation.z -= 0.05; else if (t_pad.lJoyH <= 100) - mesh.rotation.z += 0.1; + mesh.rotation.z += 0.05; if (t_pad.rJoyV >= 200 && lift <= 1) lift += 0.2F;