| 2938 | } |
| 2939 | |
| 2940 | void zNPCGoalAttackHammer::ModifyAnimSpeed() |
| 2941 | { |
| 2942 | zNPCCommon* npc = ((zNPCCommon*)(psyche->clt_owner)); |
| 2943 | F32 speed = 1.5f; |
| 2944 | U32 cheats = zGameExtras_CheatFlags(); |
| 2945 | if ((cheats & 0x800)) |
| 2946 | { |
| 2947 | speed = 2.5f; |
| 2948 | } |
| 2949 | xAnimSingle* anim = npc->AnimCurSingle(); |
| 2950 | anim->CurrentSpeed = speed; |
| 2951 | } |
| 2952 | |
| 2953 | void zNPCGoalAttackHammer::FXStreakPrep() |
| 2954 | { |
nothing calls this directly
no test coverage detected