Forum Discussion
akshay_choudhary13
Jul 06, 2021Copper Contributor
Object move as the head position move in MR app
I am working on a MR application, I want to know how a object can be moved to it's fix location with the user head. In simple terms if a user moving his head while the app is running the objects of t...
koujaku
Jul 07, 2021Former Employee
If you're using Unity and the MRTK, you might be interested in the 'Follow' solver:
https://docs.microsoft.com/en-us/windows/mixed-reality/mrtk-unity/features/ux-building-blocks/solvers/solver?view=mrtkunity-2021-05#follow
If you're interested in a more solidly locked object, you could also try making your object a child of your Camera object.
https://docs.microsoft.com/en-us/windows/mixed-reality/mrtk-unity/features/ux-building-blocks/solvers/solver?view=mrtkunity-2021-05#follow
If you're interested in a more solidly locked object, you could also try making your object a child of your Camera object.
- JbmccullochJul 07, 2021Former EmployeeNick just beat me to the reply here.
I would just add to his solutions that the Follow solver is really the preferred way of doing something like this. The second option he gave is really an unsettling effect for most people, and can cause discomfort to your users.