core.model.unload

Shared

Unloads a previously loaded model from memory


Syntax

local status = core.model.unload(
    name
)

Parameters

TypeNameDescription
stringnameName of the model to unload

Returns

TypeNameDescription
boolstatustrue on successful execution, false otherwise

Examples

Unload a loaded model from memory
core.model.unload("character")

On this page