使用 HoloLens 向 3D 模型(预制件)提供反馈

Give feedback to 3D models (Prefabs) using HoloLens

我目前正在研究如何使用 HoloLens 2 向 3d 模型(预制件)提供反馈(文本、语音、图形等)?这是我的研究课题,我对 AR、XR 和通过阅读许多研究论文、视频等自行学习的知识有限。

考虑以下示例:

如果设计师正在将电脑鼠标的原型设计为 3D 模型,他需要客户对此提出意见。因此,他将该 3D 模型提供给客户,然后客户希望使用 HoloLens 向设计师提供有关鼠标某些部分的反馈。设计师能做到吗?

那么谁能告诉我是否可以使用 HoloLens 对 3D 模型提供反馈?

Interactable component provided by MRTK-Unity 可以响应触摸、手部光线、语音等输入,并将这些交互转化为事件和视觉主题响应。

您可以将您的 3D 模型导入 Unity 并为模型的每个部分添加 Interactable 组件,然后自定义 Visual Theme of the Interactive components. Visual themes define what transforms and materials your model will update in different states. After that, your model will feedback in real-time when the customer interacts with it. Besides, if you like, you can also write your own code to customize the object on how to work after receiving the event

要完成以上步骤,您需要了解Unity的一些基础知识。建议阅读官方Unity documentation and understand the basics of Mixed Reality from here: https://microsoft.github.io/MixedRealityToolkit-Unity/Documentation/GettingStartedWithTheMRTK.html