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
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
- [WebGL]"TypeError: Cannot read properties of undefined (reading 'length')" error is thrown when starting the Player when config.autoSyncPersistentDataPath is set to true
- [UaaL] Freeze on "GetLightingSettingsOrDefaultsFallback()" when rotating device screen after unloading Unity framework
- A white vertical artifact is present when any Material from HDRI is used for a panoramic skybox
- Editor freezes when handling Havok collision interactions between a thin collider and the player controller
- No blue outline is shown on a folder in the Project tab when an external file is being dragged over the folder
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.