# 清除模型内存缓存
function ReleaseModel takes string model_path returns nothing
function ReleaseAllModel takes nothing returns nothing
function GetCacheModelCount takes nothing returns integer
1
2
3
4
2
3
4
# 描述
用来清空魔兽的模型文件缓存 降低内存占用 直到下一次读取 才会重新占用。
# 例子
call ReleaseModel("xxx.mdx")
1
local japi = require 'jass.japi'
if japi.GetCacheModelCount() > 100 then
japi.ReleaseAllModel()
end
1
2
3
4
5
2
3
4
5