本页面将提供一些有用的提示,旨在帮助您在 Unity 中使用 Vuforia 开发 AR/MR 应用程序。
当摄像机在 Editor 内的播放模式下跟踪图像目标时,Unity 会禁用图像目标游戏对象的子游戏对象包含的所有组件。这不包括图像目标游戏对象的子游戏对象上附加的任何脚本组件。即使图像目标不在视图中,所有脚本都会继续运行。因此可能需要您进行条件检查,从而防止脚本的 Update()
方法中的代码在您不需要时持续运行。或者,也可以在代码中禁用脚本组件,并在需要时再次启用该组件。
在特定图像目标跟踪事件状态(例如目标是否可见)期间运行代码的一种有用脚本是附加到每个图像目标游戏对象的 Default Trackable Event Handler (Script) 组件。
以下是两个最有用的方法:
private void OnTrackingFound()
当 Vuforia 在__摄像机视图__中找到目标图像游戏对象时,Unity 会从该游戏对象的特定实例的 Default Trackable Event Handler (Script) 组件调用此方法。此方法对于在最开始跟踪对象时运行特定代码非常有用(例如将游戏对象添加到激活状态游戏对象的列表中)。
private void OnTrackingLost()
当 Vuforia 在摄像机视图中丢失对图像目标的跟踪时,Unity 会从该游戏对象的特定实例的 Default Trackable Event Handler (Script) 组件调用此方法。此方法可用于在图像目标从视图中消失时立即运行特定代码(例如在 GameManager 中从用于跟踪应用程序中所有激活状态游戏对象的列表中删除游戏对象)。
对于仅需要进行初始设置和注册而不需要持续跟踪图像的图像目标,请导航到目标的 Image Target Behaviour (Script) 组件并启用 Enable Extended Tracking 选项。
借助 Enable Extended Tracking 功能,即使图像目标不在摄像机的视野中(在摄像机至少识别一次图像目标之后),图像目标的位置和方向仍然存在;该功能还使用环境功能来提高跟踪性能。有关用于 Vuforia 的扩展跟踪功能的更多详细信息,请参阅关于扩展跟踪的 Vuforia 文档。
要将 Vuforia AR 或 MR 应用程序从 Unity 导出到移动平台,请使用与正常发布到 Android 或 iOS 设备时相同的步骤。请参阅有关这些平台的发布操作的文档:
无需特殊设置。
以下是一些有用的资源和教程,可帮助您了解有关 Vuforia 可用的许多功能的更多信息。
Vuforia 文档:Vuforia 开发者库
Vuforia 文档:混合现实 AR/VR 体验的最佳实践 (Best practices for mixed reality AR/VR experiences)
本部分提供的链接可用于访问使用 Vuforia SDK 进行开发时可能遇到的最常见问题的有用故障排除信息。
2018–03–28 页面已发布并进行了编辑审查
在 2017.3 版中更新了有关 Unity XR API 的 Vuforia 文档
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information
You've told us this page needs code samples. If you'd like to help us further, you could provide a code sample, or tell us about what kind of code sample you'd like to see:
You've told us there are code samples on this page which don't work. If you know how to fix it, or have something better we could use instead, please let us know:
You've told us there is information missing from this page. Please tell us more about what's missing:
You've told us there is incorrect information on this page. If you know what we should change to make it correct, please tell us:
You've told us this page has unclear or confusing information. Please tell us more about what you found unclear or confusing, or let us know how we could make it clearer:
You've told us there is a spelling or grammar error on this page. Please tell us what's wrong:
You've told us this page has a problem. Please tell us more about what's wrong:
Thank you for helping to make the Unity documentation better!
Your feedback has been submitted as a ticket for our documentation team to review.
We are not able to reply to every ticket submitted.