]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
allow model entities to be ODE objects if ODE is active and geomtype is set; this...
authorRudolf Polzer <divverent@xonotic.org>
Thu, 8 Mar 2012 12:54:43 +0000 (13:54 +0100)
committerRudolf Polzer <divverent@xonotic.org>
Thu, 8 Mar 2012 12:54:43 +0000 (13:54 +0100)
qcsrc/server/autocvars.qh
qcsrc/server/g_models.qc

index aba995487208082b9eb4e7ffc6b14210a559f725..a7959af46781aff6fc03ba2e9c5bf1c47ce48dd8 100644 (file)
@@ -1214,3 +1214,4 @@ float autocvar_g_sandbox_object_scale_max;
 float autocvar_g_sandbox_object_material_velocity_min;
 float autocvar_g_sandbox_object_material_velocity_factor;
 float autocvar_g_max_info_autoscreenshot;
+float autocvar_physics_ode;
index befdb9bcc437e552e423d8489ac81f14cfec7d26..43dc25ff791da1074919a772bbf9fcea53d0ad7c 100644 (file)
@@ -128,6 +128,7 @@ float g_clientmodel_genericsendentity (entity to, float sf)
 
 
 #define G_MODEL_INIT(sol) \
+       if(self.geomtype) if(autocvar_physics_ode && checkextension("DP_PHYSICS_ODE")) self.movetype = MOVETYPE_PHYSICS; \
        if(!self.scale) self.scale = self.modelscale; \
        SetBrushEntityModel(); \
        self.use = g_model_setcolormaptoactivator; \
@@ -135,6 +136,7 @@ float g_clientmodel_genericsendentity (entity to, float sf)
        if(!self.solid) self.solid = (sol); else if(self.solid < 0) self.solid = SOLID_NOT;
 
 #define G_CLIENTMODEL_INIT(sol) \
+       if(self.geomtype) if(autocvar_physics_ode && checkextension("DP_PHYSICS_ODE")) self.movetype = MOVETYPE_PHYSICS; \
        if(!self.scale) self.scale = self.modelscale; \
        SetBrushEntityModel(); \
        self.use = g_clientmodel_setcolormaptoactivator; \