]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
explain more why physics_ode is 0 by default
authordivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Fri, 22 Oct 2010 22:23:53 +0000 (22:23 +0000)
committerdivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Fri, 22 Oct 2010 22:23:53 +0000 (22:23 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@10562 d7cf8633-e32d-0410-b094-e92efae38249

world.c

diff --git a/world.c b/world.c
index 1b931b95f34d9b1cb47e060e7fbf230ff2477238..824f9094e980e8ef045c0ca394f057eade0ba06a 100644 (file)
--- a/world.c
+++ b/world.c
@@ -338,7 +338,7 @@ cvar_t physics_ode_world_cfm = {0, "physics_ode_world_cfm", "-1", "world solver
 cvar_t physics_ode_iterationsperframe = {0, "physics_ode_iterationsperframe", "1", "divisor for time step, runs multiple physics steps per frame"};
 cvar_t physics_ode_movelimit = {0, "physics_ode_movelimit", "0.5", "clamp velocity if a single move would exceed this percentage of object thickness, to prevent flying through walls"};
 cvar_t physics_ode_spinlimit = {0, "physics_ode_spinlimit", "10000", "reset spin velocity if it gets too large"};
-cvar_t physics_ode = {0, "physics_ode", "0", "run ODE physics (enable this if you want them)"};
+cvar_t physics_ode = {0, "physics_ode", "0", "run ODE physics (VERY experimental and potentially buggy)"};
 
 // LordHavoc: this large chunk of definitions comes from the ODE library
 // include files.