From 639420295b212cdda0030b3296c156ed885abe5d Mon Sep 17 00:00:00 2001 From: divverent Date: Mon, 12 Jul 2010 18:04:25 +0000 Subject: [PATCH] Disable by default From: MirceaKitsune git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@10287 d7cf8633-e32d-0410-b094-e92efae38249 ::stable-branch::merge=e32b8629025df7c28febdfd91c758c2b1b464b3b --- darkplaces.txt | 2 +- view.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/darkplaces.txt b/darkplaces.txt index 54bc457f..84c89dad 100644 --- a/darkplaces.txt +++ b/darkplaces.txt @@ -396,7 +396,7 @@ cl_beams_polygons 1 use beam p cl_beams_quakepositionhack 1 makes your lightning gun appear to fire from your waist (as in Quake and QuakeWorld) cl_bob 0.02 view bobbing amount cl_bobcycle 0.6 view bobbing speed -cl_bobroll 0.001 view rolling amount +cl_bobroll 0 view rolling amount cl_bobrollcycle 0.75 view rolling speed cl_bobrollairtime 0.05 how fast the view rolls back when you stop touching the ground cl_bobmodel 1 enables gun bobbing diff --git a/view.c b/view.c index 1e856871..b0dbaff6 100644 --- a/view.c +++ b/view.c @@ -39,7 +39,7 @@ cvar_t cl_rollangle = {0, "cl_rollangle", "2.0", "how much to tilt the view when cvar_t cl_bob = {CVAR_SAVE, "cl_bob","0.02", "view bobbing amount"}; cvar_t cl_bobcycle = {CVAR_SAVE, "cl_bobcycle","0.6", "view bobbing speed"}; cvar_t cl_bobup = {CVAR_SAVE, "cl_bobup","0.5", "view bobbing adjustment that makes the up or down swing of the bob last longer"}; -cvar_t cl_bobroll = {CVAR_SAVE, "cl_bobroll","0.001", "view rolling amount"}; +cvar_t cl_bobroll = {CVAR_SAVE, "cl_bobroll","0", "view rolling amount"}; cvar_t cl_bobrollcycle = {CVAR_SAVE, "cl_bobrollcycle","0.75", "view rolling speed"}; cvar_t cl_bobrollairtime = {CVAR_SAVE, "cl_bobrollairtime","0.05", "how fast the view rolls back when you stop touching the ground"}; cvar_t cl_bobmodel = {CVAR_SAVE, "cl_bobmodel", "1", "enables gun bobbing"}; -- 2.39.2