increase interp ratio to 1.5
This commit is contained in:
parent
9800cb9f04
commit
43b0cede66
@ -895,8 +895,7 @@ void V_TickForever(WaveLaneCtx *lane)
|
||||
//////////////////////////////
|
||||
//- Compute movement & look
|
||||
|
||||
// f32 max_look_radius = 5;
|
||||
f32 max_look_radius = 50;
|
||||
f32 max_look_radius = 5;
|
||||
f32 min_look_radius = 0.025;
|
||||
|
||||
frame->is_looking = !frame->is_editing && !frame->palette.is_showing && !frame->held_buttons[Button_Alt];
|
||||
@ -1717,7 +1716,7 @@ void V_TickForever(WaveLaneCtx *lane)
|
||||
// How many ticks back in time should the user thread blend between?
|
||||
// <Delay> = <USER_INTERP_RATIO> * <Tick interval>
|
||||
// E.g: At 1.5, the world will render 75ms back in time if the sim runs at 50tps
|
||||
f64 interp_ratio = TweakFloat("Interpolation ratio", 1.2, 0, V_MaxInterpRatio);
|
||||
f64 interp_ratio = TweakFloat("Interpolation ratio", 1.5, 0, V_MaxInterpRatio);
|
||||
|
||||
//- Blended sim tick
|
||||
f64 target_blend_sim_tick = (f64)ack - interp_ratio;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user