mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
Merge pull request #82 from QBall147/q3map2-ql-surface-params
Additional Surface parameters for Quake Live
This commit is contained in:
commit
8d84aa7933
1 changed files with 15 additions and 0 deletions
|
@ -43,6 +43,18 @@
|
||||||
------------------------------------------------------------------------------- */
|
------------------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
|
||||||
|
/* -------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Additional surface flags for Quake Live
|
||||||
|
|
||||||
|
------------------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
#define Q_SURF_SNOWSTEPS 0x80000 // snow footsteps
|
||||||
|
#define Q_SURF_WOODSTEPS 0x100000 // wood footsteps
|
||||||
|
#define Q_SURF_DMGTHROUGH 0x200000 // Missile dmg through surface(?)
|
||||||
|
// (This is not in use atm, will
|
||||||
|
// probably be re-purposed some day.)
|
||||||
|
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------------
|
/* -------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -126,6 +138,9 @@
|
||||||
{ "ladder", 0, 0, Q_SURF_LADDER, 0, 0, 0 },
|
{ "ladder", 0, 0, Q_SURF_LADDER, 0, 0, 0 },
|
||||||
{ "nodamage", 0, 0, Q_SURF_NODAMAGE, 0, 0, 0 },
|
{ "nodamage", 0, 0, Q_SURF_NODAMAGE, 0, 0, 0 },
|
||||||
{ "metalsteps", 0, 0, Q_SURF_METALSTEPS, 0, 0, 0 },
|
{ "metalsteps", 0, 0, Q_SURF_METALSTEPS, 0, 0, 0 },
|
||||||
|
{ "snowsteps", 0, 0, Q_SURF_SNOWSTEPS, 0, 0, 0 },
|
||||||
|
{ "woodsteps", 0, 0, Q_SURF_WOODSTEPS, 0, 0, 0 },
|
||||||
|
{ "dmgthrough", 0, 0, Q_SURF_DMGTHROUGH, 0, 0, 0 },
|
||||||
{ "flesh", 0, 0, Q_SURF_FLESH, 0, 0, 0 },
|
{ "flesh", 0, 0, Q_SURF_FLESH, 0, 0, 0 },
|
||||||
{ "nosteps", 0, 0, Q_SURF_NOSTEPS, 0, 0, 0 },
|
{ "nosteps", 0, 0, Q_SURF_NOSTEPS, 0, 0, 0 },
|
||||||
{ "nodlight", 0, 0, Q_SURF_NODLIGHT, 0, 0, 0 },
|
{ "nodlight", 0, 0, Q_SURF_NODLIGHT, 0, 0, 0 },
|
||||||
|
|
Loading…
Reference in a new issue