mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-28 13:47:58 +03:00
Use correct names for surface flags
This commit is contained in:
parent
7a7849ae83
commit
99fbe092bc
1 changed files with 78 additions and 76 deletions
|
@ -89,7 +89,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|||
#define SURF_ALPHASHADOW 0x200 // do per-pixel light shadow casting in q3map
|
||||
#define SURF_NOSTEPS 0x400 // no footstep sounds
|
||||
#define SURF_NONSOLID 0x800 // don't collide against curves with this set
|
||||
#define SURF_UNKNOWN1 0x1000 // IneQuation: WTF?
|
||||
#define SURF_OVERBRIGHT 0x1000
|
||||
#define SURF_PAPER 0x2000 // paper effects
|
||||
#define SURF_WOOD 0x4000 // wood effects
|
||||
#define SURF_METAL 0x8000 // metal effects
|
||||
|
@ -108,7 +108,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|||
#define SURF_BACKSIDE 0x10000000 // su44: backside
|
||||
#define SURF_NODLIGHT 0x20000000 // don't dlight even if solid (solid lava, skies)
|
||||
#define SURF_HINT 0x40000000 // make a primary bsp splitter
|
||||
#define SURF_UNKNOWN3 0x80000000 // IneQuation: WTF?
|
||||
#define SURF_PATCH 0x80000000
|
||||
|
||||
#define SURF_FLESH 0x40 // make flesh sounds and effects
|
||||
#define SURF_POINTLIGHT 0x800 // generate lighting info at vertexes
|
||||
|
@ -116,4 +116,6 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|||
#define SURF_LIGHTFILTER 0x8000 // act as a light filter during q3map -light
|
||||
#define SURF_DUST 0x40000 // leave a dust trail when walking on this surface
|
||||
|
||||
#define MASK_SURF_TYPE (SURF_PAPER|SURF_WOOD|SURF_METAL|SURF_ROCK|SURF_DIRT|SURF_GRILL|SURF_GRASS|SURF_MUD|SURF_PUDDLE|SURF_GLASS|SURF_GRAVEL|SURF_SAND|SURF_FOLIAGE|SURF_SNOW|SURF_CARPET)
|
||||
#define MASK_SURF_TYPE \
|
||||
(SURF_PAPER | SURF_WOOD | SURF_METAL | SURF_ROCK | SURF_DIRT | SURF_GRILL | SURF_GRASS | SURF_MUD | SURF_PUDDLE \
|
||||
| SURF_GLASS | SURF_GRAVEL | SURF_SAND | SURF_FOLIAGE | SURF_SNOW | SURF_CARPET)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue