mirror of
https://github.com/ZDoom/acc.git
synced 2025-01-31 03:10:34 +00:00
- Update zdefs.acs and zspecial.acs for recent ACS additions.
SVN r4308 (trunk)
This commit is contained in:
parent
1d7b0f4bcf
commit
cccb298f8b
2 changed files with 18 additions and 0 deletions
15
zdefs.acs
15
zdefs.acs
|
@ -675,6 +675,21 @@
|
|||
#define SECSEQ_FULLHEIGHT 3
|
||||
#define SECSEQ_INTERIOR 4
|
||||
|
||||
// Channels for PlaySound and StopSound
|
||||
|
||||
#define CHAN_AUTO 0
|
||||
#define CHAN_WEAPON 1
|
||||
#define CHAN_VOICE 2
|
||||
#define CHAN_ITEM 3
|
||||
#define CHAN_BODY 4
|
||||
|
||||
// Standard attenuation values for PlaySound
|
||||
|
||||
#define ATTN_NONE 0 // full volume the entire level
|
||||
#define ATTN_NORM 1.0
|
||||
#define ATTN_IDLE 1.001
|
||||
#define ATTN_STATIC 3.0 // dimish very rapidly with distance
|
||||
|
||||
// Actor pointer selectors
|
||||
|
||||
#DEFINE AAPTR_DEFAULT 0
|
||||
|
|
|
@ -301,6 +301,9 @@ special
|
|||
-57:SetCVarString(2),
|
||||
-58:GetUserCVarString(2),
|
||||
-59:SetUserCVarString(3),
|
||||
-60:LineAttack(3,6),
|
||||
-61:PlaySound(2,6),
|
||||
-62:StopSound(1,2),
|
||||
|
||||
// ZDaemon's
|
||||
-19260:GetTeamScore(1),
|
||||
|
|
Loading…
Reference in a new issue