Hosting and domain costs until October 2024 have been generously sponsored by dumptruck_ds. Thank you!

Difference between revisions of "DP QC TRACE MOVETYPE HITMODEL"

From Quake Wiki

(New page: Constant definitions: <pre> float MOVE_HITMODEL = 4; </pre> Allows traces to hit alias models (not sprites!) instead of entity boxes, use as the nomonsters parameter to trace functions, n...)
 
 
Line 5: Line 5:
  
 
Allows traces to hit alias models (not sprites!) instead of entity boxes, use as the nomonsters parameter to trace functions, note that you can hit invisible model entities (alpha < 0 or EF_NODRAW or model "", it only checks modelindex)
 
Allows traces to hit alias models (not sprites!) instead of entity boxes, use as the nomonsters parameter to trace functions, note that you can hit invisible model entities (alpha < 0 or EF_NODRAW or model "", it only checks modelindex)
 +
[[Category:DarkPlaces]]

Latest revision as of 02:18, 25 March 2013

Constant definitions:

float MOVE_HITMODEL = 4;

Allows traces to hit alias models (not sprites!) instead of entity boxes, use as the nomonsters parameter to trace functions, note that you can hit invisible model entities (alpha < 0 or EF_NODRAW or model "", it only checks modelindex)