Increase step smoothing to fit 1:1 stairs (works well on slabs too)

Signed-off-by: Craig Robbins <kde.psych@gmail.com>
This commit is contained in:
Calinou 2014-10-26 11:13:00 +01:00 committed by Craig Robbins
parent 26cf98ccfc
commit 1c9f05d792

View File

@ -255,7 +255,7 @@ void Camera::update(LocalPlayer* player, f32 frametime, f32 busytime,
{
f32 oldy = old_player_position.Y;
f32 newy = player_position.Y;
f32 t = exp(-23*frametime);
f32 t = exp(-10*frametime);
player_position.Y = oldy * t + newy * (1-t);
}