设置特效动画
function EXSetEffectAnimation takes effect handle, integer index returns nothing
1
描述
设置特效动画
参数
类型 | 名字 | 说明 |
特效 | handle | 特效 handle |
整数 | index | 动画索引 |
例子
call EXSetEffectAnimation(handle, 0)
1
local japi = require 'jass.japi'
japi.EXSetEffectAnimation(handle, 0)
1
2
3
4