Search Issue Tracker
Fixed in 0.10.0-preview.1
Votes
1
Found in [Package]
0.9.4
Issue ID
1264748
Regression
No
[XR Interaction Toolkit] Custom reticle flickers when interacting with UI
Repro steps:
1. Open attached project
2. Build and Run on Quest
3. Point the left controller which has a mesh based reticle to UI
Actual: The reticle is flickering
Reproducible with: XR Interaction Toolkit preview - 0.9.4
Comments (1)
-
JKadlec
May 17, 2022 16:54
I have the same issue in version 2.0.0-pre.5.
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- "One or more data file missing for baking set NewScene Baking Set. Cannot load shared data." error in Player when a specific project is built
- Choosing new HDR Colour using RGB values breaks colour on Intensity Selectors
- Rendering/Decal Layer Mask options are different inside Prefab Mode and outside Prefab Mode when the project is upgraded to Unity 6
- Incorrect Realtime GI Light Probes baking when more than one Light Probe Group is used and "Baked Global Illumination" is enabled
- Hovering on the three-dot menu also highlights the tab header near it when not all tabs fit the bar
Resolution Note (fix version 0.10.0-preview.1):
In the repro project provided, because the reticle was a child of the LeftHand Controller, and the XRController has tracking type for Update and OnBeforeRender, the position of the controller would update again after the reticle position was updated during Update. This would cause the reticle position to sometimes be behind the UI Canvas, causing the flicker. In the new version of the package, XRInteractorLineVisual updates during OnBeforeRender after the controller position is updated, correcting the problem.
The issue will be fixed by upgrading to version 0.10 of the XR Interaction Toolkit package. As a workaround if updating is not possible, the Reticle GameObject can be reparented to the root level of the scene so it is not a child of the controller.