A_PigPain

From ZDoom Wiki
Revision as of 15:46, 22 April 2015 by Blue Shadow (talk | contribs) (Corrected documentation)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

A_PigPain

(no parameters)

Usage

Plays the pain sound of the actor by calling A_Pain and thrusts it vertically in the air with a small force. The thrust is only applied if the actor is resting on the ground.

Hexen's pig is currently the only actor class that makes use of this function.

Examples

This code is the equivalent of calling A_PigPain.

  Pain:
    EXAM A 2
    EXAM A 0 A_Pain
    EXAM A 2 A_JumpIf(z <= floorz, "Thrust") // See DECORATE expressions
    Goto See
  Thrust:
    EXAM A 2 A_ChangeVelocity(velx, vely, 1.0 * 7 / 2, CVF_REPLACE)
    Goto See