Why my 3d Object in HoloLens follow me all the time and not stable?

Viewed 388

In my Project, using the MRTK, Vision LIB and HoloLens 2. when I transfer my project to HoloLens the problem is that for example I have a Slate(Panel) it appears but it follow my head all the time, it s not stable in one position. before was everything good , I don't know what it happens or what maybe I've changed by mistake. These are my Settings : enter image description here

enter image description here

enter image description here

I am using unity 2019.4.3f1 Vision lib 2.0.2 MRTK 2.5.0

I hope if someone can help me, Thank you :)

1 Answers

The script FollowMeToggle is used for exactly that. Remove the component and try again.

If that does not fix it, check the position of your GameObject in the hirarchy. If your slate is positioned under the MainCamera, then such a behaviour would be expected. If that is the case, place your GameObject directly under the Scene.

Related