mirror of
https://github.com/nzp-team/dquakeplus.git
synced 2024-11-25 05:11:03 +00:00
Remove decrease in FOV while sprinting
This commit is contained in:
parent
1537ce1c36
commit
60103d3bb3
1 changed files with 5 additions and 12 deletions
|
@ -1505,21 +1505,14 @@ void SCR_UpdateScreen (void)
|
|||
}
|
||||
else if (cl.stats[STAT_ZOOM] == 2)
|
||||
{
|
||||
Cvar_SetValue ("fov", 30);
|
||||
Cvar_SetValue ("r_viewmodel_fov", 30);
|
||||
zoomin_time = 0;
|
||||
}
|
||||
else if (cl.stats[STAT_ZOOM] == 3)
|
||||
{
|
||||
if (!original_fov) {
|
||||
if (!original_fov)
|
||||
{
|
||||
original_fov = scr_fov.value;
|
||||
original_view_fov = scr_fov_viewmodel.value;
|
||||
}
|
||||
|
||||
scr_fov.value += (original_fov - 10 - scr_fov.value) * 0.3;
|
||||
scr_fov_viewmodel.value += (original_view_fov - 10 - scr_fov_viewmodel.value) * 0.3;
|
||||
Cvar_SetValue("fov",scr_fov.value);
|
||||
Cvar_SetValue("r_viewmodel_fov", scr_fov_viewmodel.value);
|
||||
Cvar_SetValue ("fov", 30);
|
||||
Cvar_SetValue ("r_viewmodel_fov", 30);
|
||||
zoomin_time = 0;
|
||||
}
|
||||
else if (cl.stats[STAT_ZOOM] == 0 && original_fov != 0)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue