ArchiDog1998/XIVDrawer

How to Draw Tethers Vfx

Closed this issue · 2 comments

I want draw Tethers Vfx on game.
but i dont find Tethers vfx path in game.

没事了 看到新添加的doc了 打扰了

Chinese?

关于连线的内容,在游戏名称中为Channeling,可以参考这个文档:https://github.com/xivapi/ffxiv-datamining/blob/master/csv/Channeling.csv
在XIVPainter里面,只内置了一种连线。

new ActorVfx(ActorOmen.ChannelingDark.Channeling(), player, target);

这个函数是将Channeling的名称转换为路径的函数,你可以用自己的名称来调用这个Channeling函数。

你可以尝试这么使用:

new ActorVfx("chn_wind001f".Channeling(), player, target);

Have fun!