# 设置单位头像模型
function SetUnitPortrait takes unit handle, string model returns nothing
1
# 描述
设置之后会立即改变 当 设置单位模型时 会被新的自动覆盖掉
# 参数
类型 | 名字 | 说明 |
---|---|---|
单位 | handle | 要修改的单位 handle |
字符串 | model | 模型路径 后缀可以是.mdx .mdl 省略后缀自动默认.mdx |
# 例子
call SetUnitPortrait(GetTriggerUnit(), "units\\human\\Peasant\\Peasant_portrait.mdx")
1
2
2
local japi = require 'jass.japi'
local jass = require 'jass.common'
japi.SetUnitPortrait(jass.GetTriggerUnit(), "units\\human\\Peasant\\Peasant_portrait.mdx")
1
2
3
4
5
2
3
4
5