We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5bb3cbd + f9b3146 commit e8fbfa8Copy full SHA for e8fbfa8
Packages/webxr-interactions/CHANGELOG.md
@@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
7
## [Unreleased]
8
9
+### Fixed
10
+- SceneHitTest right controller issue.
11
+
12
## [0.16.2] - 2023-02-04
13
### Fixed
14
- Webcam errors in different versions of Unity.
Packages/webxr-interactions/Runtime/Scripts/SceneHitTest.cs
@@ -31,7 +31,7 @@ void Start()
31
}
32
else if (controllers[i].hand == WebXRControllerHand.RIGHT)
33
{
34
- rightController = leftController ?? controllers[i];
+ rightController = rightController ?? controllers[i];
35
36
if (leftController != null && rightController != null)
37
0 commit comments