unloadModel function

void unloadModel(
  1. Model model
)

Unload model (including meshes) from memory (RAM and/or VRAM).

Implementation

void unloadModel(Model model) {
  return library.UnloadModel(model.ref);
}