Skip to content
Snippets Groups Projects
Commit 56a89fd2 authored by paramat's avatar paramat Committed by Zeno-
Browse files

Return step smoothing value to 23

parent 4a57ef12
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment