mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-25 05:31:00 +00:00
- add missing SPAC constants
This commit is contained in:
parent
0adbb8d631
commit
7073bd8f5f
1 changed files with 2 additions and 0 deletions
|
@ -1270,6 +1270,8 @@ enum SPAC
|
||||||
SPAC_MUse = 1<<8, // monsters can use
|
SPAC_MUse = 1<<8, // monsters can use
|
||||||
SPAC_MPush = 1<<9, // monsters can push
|
SPAC_MPush = 1<<9, // monsters can push
|
||||||
SPAC_UseBack = 1<<10, // Can be used from the backside
|
SPAC_UseBack = 1<<10, // Can be used from the backside
|
||||||
|
SPAC_Damage = 1<<11, // [ZZ] when linedef receives damage
|
||||||
|
SPAC_Death = 1<<12, // [ZZ] when linedef receives damage and has 0 health
|
||||||
|
|
||||||
SPAC_PlayerActivate = (SPAC_Cross|SPAC_Use|SPAC_Impact|SPAC_Push|SPAC_AnyCross|SPAC_UseThrough|SPAC_UseBack),
|
SPAC_PlayerActivate = (SPAC_Cross|SPAC_Use|SPAC_Impact|SPAC_Push|SPAC_AnyCross|SPAC_UseThrough|SPAC_UseBack),
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue