mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-06 21:12:12 +00:00
b599eda17d
monsters - Added velocity multiplicators to A_SpawnDebris. - Changed: A_JumpIfNoAmmo should have no effect for CustomInventory items. - Fixed: DECORATE jump commands must set the call state's result to 0 even when they have to return prematurely. - Added obituaries for Strife's and Hexen's monsters. - Converted Strife's Bishop to DECORATE. - Added momx, momy and momz variables to the DECORATE expression evaluator. SVN r404 (trunk)
15 lines
400 B
Text
15 lines
400 B
Text
|
|
// Flags for A_CustomMissile
|
|
const int CMF_AIMOFFSET = 1;
|
|
const int CMF_AIMDIRECTION = 2;
|
|
const int CMF_TRACKOWNER = 4;
|
|
const int CMF_CHECKTARGETDEAD = 8;
|
|
|
|
// Flags for A_SpawnItemEx
|
|
const int SXF_TRANSFERTRANSLATION=1;
|
|
const int SXF_ABSOLUTEPOSITION=2;
|
|
const int SXF_ABSOLUTEANGLE=4;
|
|
const int SXF_ABSOLUTEMOMENTUM=8;
|
|
const int SXF_SETMASTER=16;
|
|
const int SXF_NOCHECKPOSITION = 32;
|
|
|