| 1806 | } |
| 1807 | |
| 1808 | S32 zNPCCommon::GetVertPos(en_mdlvert vid, xVec3* pos) |
| 1809 | { |
| 1810 | NPCConfig* cfg = cfg_npc; |
| 1811 | if (!(cfg->flg_vert & 1 << vid)) |
| 1812 | { |
| 1813 | return 0; |
| 1814 | } |
| 1815 | iModelTagEval(model->Data, &cfg->tag_vert[vid], model->Mat, pos); |
| 1816 | return 1; |
| 1817 | } |
| 1818 | |
| 1819 | S32 zNPCCommon::IsAttackFrame(F32 tym_anim, S32 series) |
| 1820 | { |
no test coverage detected