| 58 | } |
| 59 | |
| 60 | void CAnimState::AnimAdd(CAnimState *pState, const CAnimState *pAdded, float Amount) |
| 61 | { |
| 62 | AnimAddKeyframe(&pState->m_Body, pAdded->GetBody(), Amount); |
| 63 | AnimAddKeyframe(&pState->m_BackFoot, pAdded->GetBackFoot(), Amount); |
| 64 | AnimAddKeyframe(&pState->m_FrontFoot, pAdded->GetFrontFoot(), Amount); |
| 65 | AnimAddKeyframe(&pState->m_Attach, pAdded->GetAttach(), Amount); |
| 66 | } |
| 67 | |
| 68 | void CAnimState::Set(const CAnimation *pAnim, float Time) |
| 69 | { |
nothing calls this directly
no test coverage detected