# 设置特效坐标

function EXSetEffectXY takes effect handle, real x, real y returns nothing
function EXSetEffectZ takes effect handle, real z returns nothing
1
2

# 描述

设置特效坐标 修复了原本 ydjapi 里面特效超过出生范围一定距离 游戏不会渲染的问题 用了类似全图挂的方式 强行让魔兽渲染该特效。

# 参数

类型 名字 说明
特效 handle 特效 handle

# 例子

call EXSetEffectXY(handle, 0, 0)
1
local japi = require 'jass.japi'

japi.EXSetEffectXY(handle, 0, 0)

1
2
3
4