插件详情
插件中文资料库
中文说明、玩家点评、适用场景和替代推荐,方便快速判断是否适合你。
玩家一句话点评
LibAdvFlight 适合需要运行库、界面增强或玩法辅助的玩家,建议结合自己的职业和版本先测试再长期使用。
适用场景
- 界面布局、头像框、姓名板和动作条优化
LibAdvFlight 插件下载与使用指南
本页整理了 LibAdvFlight 的功能用途、适用人群、安装方法和常见问题,方便玩家快速判断是否需要安装。
适合谁用
LibAdvFlight 是一款 运行库 类插件,适合需要优化界面、提升操作效率或补充游戏信息提示的魔兽世界玩家。
基本信息
- 插件作者:Ghostopheles
- 插件分类:运行库
- 适配版本:12.0.5
- 累计下载:1,724
安装方法
- 点击上方下载按钮获取 LibAdvFlight插件文件。
- 解压后将插件文件夹放入 World of Warcraft/_retail_/Interface/AddOns 目录。
- 重启游戏或在角色界面点击插件,确认 LibAdvFlight 已启用。
- 如果插件不生效,请检查版本是否匹配,或关闭同类冲突插件后重试。
使用建议
LibAdvFlight 安装后建议先在角色界面确认已启用,进入游戏后根据插件提供的命令、小地图按钮或设置面板进行调整。如遇到报错,可先单独启用该插件排查冲突。
LibAdvFlight 常见问题
这个插件适合哪些玩家?
LibAdvFlight 适合需要 运行库 类功能的玩家,特别是希望提升游戏便利性、界面管理或战斗信息获取效率的用户。
下载后怎么安装?
下载后解压到 Interface/AddOns 目录,然后重启游戏并在角色界面启用插件。
为什么插件不显示或不生效?
常见原因是目录多套一层、游戏版本不匹配、依赖插件缺失或同类插件冲突。
有没有类似插件可以替代?
可以查看本页的替代插件推荐和相关插件区域,按下载量和分类选择同类工具。
插件 AI 问答
可以问:这个插件正式服能用吗、和 DBM 冲突吗、怎么设置、有没有替代插件。
LibAdvFlight 是一个插件依赖库,为其他插件提供数据或功能支持。
插件用途
LibAdvFlight 主要面向需要运行库功能的玩家,用来改善游戏体验、减少重复操作或补充默认界面没有直接提供的信息。
适用场景
- 界面框架、头像、动作条或冷却显示优化
- 插件库、数据接口或依赖支持
使用建议
安装后建议先在角色选择界面或插件管理器中确认已启用,再进入游戏测试是否与现有整合包、WA 和其他插件冲突。如遇报错,可以先禁用同类插件排查。
LibAdvFlight
A simple library to track events related to the advanced flying system. Requires LibStub (included in packaged releases).Usage
Add LibAdvFlight-1.0 to your addon by either specifying it in your.pkgmeta file, or by downloading a packaged version from this repo, and loading the lib.xml file.
local LibAdvFlight = LibStub:GetLibrary("LibAdvFlight-1.0");
local Events = LibAdvFlight.Events;
local function OnAdvFlyStart()
print("Player has taken off!");
end
--- Using the provided API function
LibAdvFlight.RegisterCallback(Events.ADV_FLYING_START, OnAdvFlyStart);
-- Using the global EventRegistry
EventRegistry:RegisterCallback(Events.ADV_FLYING_START, OnAdvFlyStart);
API
Events
All events can be found inLibAdvFlight.Events. Event args will be listed beneath any events that include them.
Advanced Flying Enable State
Whether or not the player is able to advanced fly. i.e. player is mounted on an advanced flying mount.ADV_FLYING_ENABLED: Advanced flying has been enabled. This fires when the player mounts up on an advanced flyable mount, or when using Soar as a Dracthyr.ADV_FLYING_DISABLED: Advanced flying has been disabled. Occurs when the player dismounts, or if the zone is not advanced flyable.ADV_FLYING_ENABLE_STATE_CHANGED: Advanced flying enable state has changed. This acts as a 'toggle', useful if you would rather register one event instead of bothADV_FLYING_{ENABLED | DISABLED}.isAdvFlyEnabled-boolean: Indicates the new advanced flying enable state.
Advanced Flying State
Whether the player is actively using advanced flight or not (flying or grounded, essentially).ADV_FLYING_START: Player has taken off and begun flying using advanced flight.ADV_FLYING_END: Player has either landed or dismounted and is no longer flying.ADV_FLYING_STATE_CHANGED: Advanced flying state has changed, as withADV_FLYING_ENABLE_STATE_CHANGED, this is acts as a 'toggle' event.isAdvFlying-boolean: Indicates the new 'flying' state of the player.
Vigor State
Player's current vigor/energy stateVIGOR_MAX_CHANGED: Player's maximum vigor value has changed. This event may fire multiple times upon first mounting up due to Blizzard's nonsense.vigorMax-number: Player's maximum vigor value.
VIGOR_CHANGED: Player's current vigor value has changed. This event may also have unexpected behavior upon first mounting up (like values above 6??).vigorCurrent-number: Player's current vigor value.
Functions
Events are great and all, but useless without a way to listen for them. Here, you can choose to use the API function below, or you can just register a callback with the global EventRegistry if you prefer.LibAdvFlight.RegisterCallback(event, callback, owner?)
Registers a callback for the given event.
event-string: Event name. Names can be found inLibAdvFlight.Events.callback-function: Callback function called when the given event is fired and will be passed the event's arguments.owner?-table: Object passed to callback as the first argument to thecallbackfunction, same as the base CallbackRegistry, though if it's not provided, passes just the event arguments.
Unregister function to unregister the callback.
LibAdvFlight.IsAdvFlyEnabled()
Returns whether or not advanced flying is currently enabled. See the Events section above for more details.
LibAdvFlight.IsAdvFlying()
Returns whether or not the player is currently flying using advanced flight. See the Events section above for more details.
LibAdvFlight.GetMaxVigor()
Returns the player's maximum vigor level. Returns 0 if not mounted on an advanced flight mount.
LibAdvFlight.GetCurrentVigor()
Returns the player's current vigor level. Returns 0 if not mounted on an advanced flight mount.
LibAdvFlight.GetForwardSpeed()
Returns the current forwardSpeed of the player. Returns 0 if not mounted on an advanced flight mount.
LibAdvFlight.GetForwardSpeedRounded()
Returns the current forwardSpeed, rounded to the nearest whole number. Returns 0 if not mounted on an advanced flight mount.
LibAdvFlight.GetHeading()
Returns the player's current heading (direction) in degrees. Returns nil inside instances.
LibAdvFlight.GetHeadingRounded()
Returns the player's current heading in degrees, rounded to the nearest whole number. Returns nil inside instances.
LibAdvFlight.GetHeadingRadians()
Returns the player's current heading in radians. Returns nil inside instances.
CurseForge: https://www.curseforge.com/wow/addons/libadvflight用户评价
暂无 / 5,0 条评价免费插件下载后可以评价;付费插件 / WA 购买后可以评价;委托订单完成后可以评价。
暂无评价。
相关推荐
继续看看这些内容