I am currently researching how can we give feedback (Text, Speech, Graphics, etc) to 3d models (Prefabs) using HoloLens 2? This is my research topic and I have limited knowledge about AR, XR and learning on my own by going through many research papers, videos and so on.
Consider below example:
If the designer is designing a prototype of a computer mouse as a 3D model and he needs the opinion of a customer about it. So he gives that 3D model to the customer and then customer wants to give feedback about some parts of the mouse to the designer using HoloLens. will the designer able to do so?
So could anyone please tell me whether it is possible to give feedback to 3D models using HoloLens?
The Interactable component provided by MRTK-Unity can respond to input such as touch, hand rays, speech, etc and funnel these interactions into events and visual theme responses.
You can import your 3D model into Unity and add Interactable components to each part of the model, then customize the 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.
To complete the above steps, you need to know some basics about Unity. It is recommended that reading the official Unity documentation and understand the basics of Mixed Reality from here: https://microsoft.github.io/MixedRealityToolkit-Unity/Documentation/GettingStartedWithTheMRTK.html