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.
1 parent 2d01751 commit b8ff7c3Copy full SHA for b8ff7c3
Assets/MixedRealityToolkit/Providers/BaseDeviceManager.cs
@@ -47,7 +47,7 @@ protected virtual IMixedRealityPointer[] RequestPointers(SupportedControllerType
47
{
48
var pointerProfile = MixedRealityToolkit.Instance.ActiveProfile.InputSystemProfile.PointerProfile.PointerOptions[i];
49
50
- if ((pointerProfile.ControllerType == controllerType) &&
+ if (((pointerProfile.ControllerType & controllerType) != 0) &&
51
(pointerProfile.Handedness == Handedness.Any || pointerProfile.Handedness == Handedness.Both || pointerProfile.Handedness == controllingHand))
52
53
var pointerObject = Object.Instantiate(pointerProfile.PointerPrefab, MixedRealityToolkit.Instance.MixedRealityPlayspace);
0 commit comments