* Unload animation data */
| 73 | * Unload animation data |
| 74 | */ |
| 75 | void Unload() { |
| 76 | if (keyframePoses != nullptr) { |
| 77 | ::UnloadModelAnimations(this, 1); |
| 78 | keyframePoses = nullptr; |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | static void Unload(ModelAnimation *modelAnimation, int count) { |
| 83 | ::UnloadModelAnimations(modelAnimation, count); |
nothing calls this directly
no outgoing calls
no test coverage detected