From d17a581656c3eb239c9dfa2a33a5fff89d35812d Mon Sep 17 00:00:00 2001 From: Kat Vlasova <38482323+katvlasova@users.noreply.github.com> Date: Mon, 28 Mar 2022 14:10:17 -0400 Subject: [PATCH] Update MagicLeapMRTKController.cs (#11) --- .../MagicLeap/Controllers/MagicLeapMRTKController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/MRTK-MagicLeap/Providers/MagicLeap/Controllers/MagicLeapMRTKController.cs b/Assets/MRTK-MagicLeap/Providers/MagicLeap/Controllers/MagicLeapMRTKController.cs index 590486e..ba82af1 100644 --- a/Assets/MRTK-MagicLeap/Providers/MagicLeap/Controllers/MagicLeapMRTKController.cs +++ b/Assets/MRTK-MagicLeap/Providers/MagicLeap/Controllers/MagicLeapMRTKController.cs @@ -82,7 +82,7 @@ public void CleanupController() public override MixedRealityInteractionMapping[] DefaultLeftHandedInteractions => new[] { new MixedRealityInteractionMapping(0, "Spatial Pointer", AxisType.SixDof, DeviceInputType.SpatialPointer), - new MixedRealityInteractionMapping(1, "Select", AxisType.Digital, DeviceInputType.Select), + new MixedRealityInteractionMapping(1, "Select", AxisType.Digital, DeviceInputType.ButtonPress), new MixedRealityInteractionMapping(2, "Bumper Press", AxisType.Digital, DeviceInputType.ButtonPress), new MixedRealityInteractionMapping(3, "Home Press", AxisType.Digital, DeviceInputType.ButtonPress), new MixedRealityInteractionMapping(4, "Touchpad Touch", AxisType.Digital, DeviceInputType.ButtonPress), @@ -93,7 +93,7 @@ public void CleanupController() public override MixedRealityInteractionMapping[] DefaultRightHandedInteractions => new[] { new MixedRealityInteractionMapping(0, "Spatial Pointer", AxisType.SixDof, DeviceInputType.SpatialPointer), - new MixedRealityInteractionMapping(1, "Select", AxisType.Digital, DeviceInputType.Select), + new MixedRealityInteractionMapping(1, "Select", AxisType.Digital, DeviceInputType.ButtonPress), new MixedRealityInteractionMapping(2, "Bumper Press", AxisType.Digital, DeviceInputType.ButtonPress), new MixedRealityInteractionMapping(3, "Home Press", AxisType.Digital, DeviceInputType.ButtonPress), new MixedRealityInteractionMapping(4, "Touchpad Touch", AxisType.Digital, DeviceInputType.TouchpadTouch),