| 146 | } |
| 147 | |
| 148 | BF_EXPORT void BF_CALLTYPE ModelDefAnimation_Clip(ModelAnimation* modelAnimation, int startFrame, int numFrames) |
| 149 | { |
| 150 | modelAnimation->mFrames.RemoveRange(0, startFrame); |
| 151 | modelAnimation->mFrames.RemoveRange(numFrames, modelAnimation->mFrames.Count() - numFrames); |
| 152 | } |
| 153 | |
| 154 | ModelDef::ModelDef() |
| 155 | { |
nothing calls this directly
no test coverage detected