mirror of
https://github.com/ZDoom/acc.git
synced 2024-11-23 12:22:33 +00:00
- Changed: The decision whether blood splatter sprites are spawned is no
longer determined by game. Instead there's a new flag, MF5_BLOODSPLATTER which is deciding what to do. To keep backwards compatibility this flag is unset for projectiles in Doom and Strife and set for them in Heretic and Hexen. The same applies to DECORATE but of course the flag can be manipulated here. - BLODxx sprites are now globally renamed to BLUDxx when not playing Doom. This allows using the same states in every game, including the Raven-specific blood actors. - Gave the bullet puff and the axe blood masses of 5 so that the make small splashes. - Added A_Light(value) code pointer for DECORATE to generalize the weapon light effect. - Added 'noskillmenu' option to MAPINFO episode definitions. This is for WADs that want to implement a skill selection level. - Added APROP_ChaseGoal and APROP_Frightened actor properties for ACS. - Added MF5_CHASEGOAL flag that makes monsters to go after their goal even if they have a valid target. - Fixed some issues with the changes to P_NewChaseDir I made to include MBF's dropoff logic. - Added a PowerFrightener powerup class. It seemed like such a waste to have this cool feature but no means to use it in a decent fashion. - Fixed: S_Init and S_ParseSndInfo should call atterm only once but not each time they are called. SVN r112 (trunk)
This commit is contained in:
parent
33257fb69e
commit
160af2afb2
1 changed files with 3 additions and 0 deletions
|
@ -154,6 +154,9 @@
|
||||||
#define APROP_RenderStyle 4
|
#define APROP_RenderStyle 4
|
||||||
#define APROP_Ambush 10
|
#define APROP_Ambush 10
|
||||||
#define APROP_Invulnerable 11
|
#define APROP_Invulnerable 11
|
||||||
|
#define APROP_JumpZ 12
|
||||||
|
#define APROP_ChaseGoal 13
|
||||||
|
#define APROP_Frightened 14
|
||||||
#define APROP_SeeSound 5 // Sounds can only be set, not gotten
|
#define APROP_SeeSound 5 // Sounds can only be set, not gotten
|
||||||
#define APROP_AttackSound 6
|
#define APROP_AttackSound 6
|
||||||
#define APROP_PainSound 7
|
#define APROP_PainSound 7
|
||||||
|
|
Loading…
Reference in a new issue