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
- Crash on DynamicHeapAllocator::CreateTLSFBlock when opening a specific project
- Scene flickers when using Mesh Output with SpriteLit Shader in 2D project
- “Cache Management” text is misaligned in Preferences > Package Manager
- [macOS] network permission shows the name of previously closed app when different app requests network access
- Delta value returned by mouse movementsMonitor is different when changing Screen Resolution
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.