获取特效颜色
function EXGetEffectColor takes effect effect_handle returns integer
1
2
描述
获取特效的颜色 跟 设置特效颜色 配合使用
参数
返回值
类型 | 说明 |
integer | 颜色的 16 进制 ARGB |
例子
local integer color = EXGetEffectColor()
1
2
3
local japi = require 'jass.japi'
local color = japi.EXGetEffectColor()
1
2
3
4
5
6