[nexuiz-commits] r8161 - trunk/data/qcsrc/server

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Tue Oct 20 11:34:32 EDT 2009


Author: div0
Date: 2009-10-20 11:34:32 -0400 (Tue, 20 Oct 2009)
New Revision: 8161

Modified:
   trunk/data/qcsrc/server/extensions.qh
Log:
add DP_PHYSICS preliminary API so maps can already contain ODE objects


Modified: trunk/data/qcsrc/server/extensions.qh
===================================================================
--- trunk/data/qcsrc/server/extensions.qh	2009-10-20 15:33:31 UTC (rev 8160)
+++ trunk/data/qcsrc/server/extensions.qh	2009-10-20 15:34:32 UTC (rev 8161)
@@ -2147,3 +2147,15 @@
 //
 //Note: it is worth considering that network-related functions may be called during the pause (including customizeentityforclient for example), and it is also important to consider the continued use of the KRIMZON_SV_PARSECLIENTCOMMAND extension while paused (chatting players, etc), players may also join/leave during the pause.  In other words, the only things that are not called are think and other time-related functions.
 
+
+
+
+
+
+
+//DP_PHYSICS
+float SOLID_PHYSICS_BOX = 32;
+float SOLID_PHYSICS_SPHERE = 33;
+float SOLID_PHYSICS_CAPSULE = 34;
+float MOVETYPE_PHYSICS = 32;
+.float mass;



More information about the nexuiz-commits mailing list