# 设置特效显示
function EXSetEffectVisible takes effect handle, boolean visible returns nothing
function EXSetEffectFogVisible takes effect handle, boolean visible returns nothing
function EXSetEffectMaskVisible takes effect handle, boolean visible returns nothing
1
2
3
4
2
3
4
# 描述
- 设置特效是否显示 默认 true
- 设置特效在迷雾中是否显示 默认 true
- 设置特效在阴影中是否显示 默认 true
# 参数
类型 | 名字 | 说明 |
---|---|---|
特效 | handle | 特效 handle |
布尔值 | visible | 是否显示 |
# 例子
call EXSetEffectVisible(handle, false)
1
local japi = require 'jass.japi'
japi.EXSetEffectVisible(handle, false)
1
2
3
4
2
3
4