Skip to content

Commit 56a89fd

Browse files
paramatZeno-
authored andcommittedJan 8, 2015
Return step smoothing value to 23
1 parent 4a57ef1 commit 56a89fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/camera.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ void Camera::update(LocalPlayer* player, f32 frametime, f32 busytime,
270270
{
271271
f32 oldy = old_player_position.Y;
272272
f32 newy = player_position.Y;
273-
f32 t = exp(-10*frametime);
273+
f32 t = exp(-23*frametime);
274274
player_position.Y = oldy * t + newy * (1-t);
275275
}
276276

0 commit comments

Comments
 (0)