Skip to content

Type Alias: TXR_monster_animation_action

ts
type TXR_monster_animation_action = 
  | typeof stand_idle
  | typeof capture_prepare
  | typeof sit_idle
  | typeof lie_idle
  | typeof eat
  | typeof sleep
  | typeof rest
  | typeof attack
  | typeof look_around
  | typeof turn;

Monster animation action constants accepted by the two-argument anim constructor.

Source

src/xrGame/script_animation_action_script.cpp, anim.monster enum.