MCPcopy Create free account
hub / github.com/RobLoach/raylib-cpp / Unload

Method Unload

include/ModelAnimation.hpp:75–80  ·  view source on GitHub ↗

* Unload animation data */

Source from the content-addressed store, hash-verified

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);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected