From: havoc Date: Fri, 18 Dec 2009 07:35:07 +0000 (+0000) Subject: change sv_cullentities_trace_samples from 1 to 2 - 1 is completely X-Git-Tag: xonotic-v0.1.0preview~1058 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=48984a5fb6aa8d7f60b0ad66c551fba35481115a;p=xonotic%2Fdarkplaces.git change sv_cullentities_trace_samples from 1 to 2 - 1 is completely unacceptable (hides monsters in quake if their origin is not visible...) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9589 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/sv_main.c b/sv_main.c index 30357e11..497e6807 100644 --- a/sv_main.c +++ b/sv_main.c @@ -75,7 +75,7 @@ cvar_t sv_cullentities_trace_enlarge = {0, "sv_cullentities_trace_enlarge", "0", cvar_t sv_cullentities_trace_prediction = {0, "sv_cullentities_trace_prediction", "1", "also trace from the predicted player position"}; cvar_t sv_cullentities_trace_prediction_time = {0, "sv_cullentities_trace_prediction_time", "0.2", "how many seconds of prediction to use"}; cvar_t sv_cullentities_trace_entityocclusion = {0, "sv_cullentities_trace_entityocclusion", "0", "also check if doors and other bsp models are in the way"}; -cvar_t sv_cullentities_trace_samples = {0, "sv_cullentities_trace_samples", "1", "number of samples to test for entity culling"}; +cvar_t sv_cullentities_trace_samples = {0, "sv_cullentities_trace_samples", "2", "number of samples to test for entity culling"}; cvar_t sv_cullentities_trace_samples_extra = {0, "sv_cullentities_trace_samples_extra", "2", "number of samples to test for entity culling when the entity affects its surroundings by e.g. dlight"}; cvar_t sv_cullentities_trace_samples_players = {0, "sv_cullentities_trace_samples_players", "8", "number of samples to test for entity culling when the entity is a player entity"}; cvar_t sv_debugmove = {CVAR_NOTIFY, "sv_debugmove", "0", "disables collision detection optimizations for debugging purposes"};