From: paramat Date: Wed, 7 Jan 2015 12:22:33 +0000 (+0000) Subject: Return step smoothing value to 23 X-Git-Tag: 0.4.12~127 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=56a89fd265d07d2b27c9412927ce29c7b5f704c2;p=oweals%2Fminetest.git Return step smoothing value to 23 --- diff --git a/src/camera.cpp b/src/camera.cpp index df7ea35b1..5200f71ba 100644 --- a/src/camera.cpp +++ b/src/camera.cpp @@ -270,7 +270,7 @@ void Camera::update(LocalPlayer* player, f32 frametime, f32 busytime, { f32 oldy = old_player_position.Y; f32 newy = player_position.Y; - f32 t = exp(-10*frametime); + f32 t = exp(-23*frametime); player_position.Y = oldy * t + newy * (1-t); }