mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
- Port an empty version of 'A_FaceConsolePlayer'.
Hissies will be happy now.
This commit is contained in:
parent
c28c0b8f0b
commit
8b85e6d00b
2 changed files with 12 additions and 0 deletions
|
@ -3781,6 +3781,17 @@ DEFINE_ACTION_FUNCTION(AActor, A_RaiseSiblings)
|
|||
}
|
||||
}
|
||||
|
||||
//===========================================================================
|
||||
//
|
||||
// [TP] A_FaceConsolePlayer
|
||||
//
|
||||
//===========================================================================
|
||||
DEFINE_ACTION_FUNCTION_PARAMS (AActor, A_FaceConsolePlayer) {
|
||||
ACTION_PARAM_START (1);
|
||||
ACTION_PARAM_ANGLE (MaxTurnAngle, 0);
|
||||
// NOTE: It does nothing for zdoom.
|
||||
}
|
||||
|
||||
//===========================================================================
|
||||
//
|
||||
// A_MonsterRefire
|
||||
|
|
|
@ -186,6 +186,7 @@ ACTOR Actor native //: Thinker
|
|||
action native A_ClearSoundTarget();
|
||||
action native A_FireAssaultGun();
|
||||
action native A_CheckTerrain();
|
||||
action native A_FaceConsolePlayer(float MaxTurnAngle = 0); // [TP]
|
||||
|
||||
action native A_MissileAttack();
|
||||
action native A_MeleeAttack();
|
||||
|
|
Loading…
Reference in a new issue