From a7f7854ed1f4d5013589cd02be140e718cff34ca Mon Sep 17 00:00:00 2001 From: "Simon (darkside) Jackson" Date: Wed, 19 Jun 2019 19:59:02 +0100 Subject: [PATCH] Finalising File renames Updated to 2019.1.7f1 --- .../Controllers/OpenVR/OculusGoControllerMappingProfile.cs | 2 +- .../OpenVR/OculusRemoteControllerMappingProfile.cs | 2 +- .../Controllers/OpenVR/OculusTouchControllerMappingProfile.cs | 4 ++-- .../Controllers/OpenVR/ViveWandControllerMappingProfile.cs | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Definitions/Controllers/OpenVR/OculusGoControllerMappingProfile.cs b/Definitions/Controllers/OpenVR/OculusGoControllerMappingProfile.cs index 5aac6b021..043756b88 100644 --- a/Definitions/Controllers/OpenVR/OculusGoControllerMappingProfile.cs +++ b/Definitions/Controllers/OpenVR/OculusGoControllerMappingProfile.cs @@ -22,7 +22,7 @@ protected override void Awake() { ControllerMappings = new[] { - new MixedRealityControllerMapping("Oculus Go Controller", typeof(OculusGoController), Handedness.Both), + new MixedRealityControllerMapping("Oculus Go Controller", typeof(OculusGoOpenVRController), Handedness.Both), }; } diff --git a/Definitions/Controllers/OpenVR/OculusRemoteControllerMappingProfile.cs b/Definitions/Controllers/OpenVR/OculusRemoteControllerMappingProfile.cs index e9e158438..1ba0531ce 100644 --- a/Definitions/Controllers/OpenVR/OculusRemoteControllerMappingProfile.cs +++ b/Definitions/Controllers/OpenVR/OculusRemoteControllerMappingProfile.cs @@ -21,7 +21,7 @@ protected override void Awake() { ControllerMappings = new[] { - new MixedRealityControllerMapping("Oculus Remote Controller", typeof(OculusRemoteController)), + new MixedRealityControllerMapping("Oculus Remote Controller", typeof(OculusRemoteOpenVRController)), }; } diff --git a/Definitions/Controllers/OpenVR/OculusTouchControllerMappingProfile.cs b/Definitions/Controllers/OpenVR/OculusTouchControllerMappingProfile.cs index 8cf45222b..df2c6e23d 100644 --- a/Definitions/Controllers/OpenVR/OculusTouchControllerMappingProfile.cs +++ b/Definitions/Controllers/OpenVR/OculusTouchControllerMappingProfile.cs @@ -22,8 +22,8 @@ protected override void Awake() { ControllerMappings = new[] { - new MixedRealityControllerMapping("Oculus Touch Controller Left", typeof(OculusTouchController), Handedness.Left), - new MixedRealityControllerMapping("Oculus Touch Controller Right", typeof(OculusTouchController), Handedness.Right), + new MixedRealityControllerMapping("Oculus Touch Controller Left", typeof(OculusTouchOpenVRController), Handedness.Left), + new MixedRealityControllerMapping("Oculus Touch Controller Right", typeof(OculusTouchOpenVRController), Handedness.Right), }; } diff --git a/Definitions/Controllers/OpenVR/ViveWandControllerMappingProfile.cs b/Definitions/Controllers/OpenVR/ViveWandControllerMappingProfile.cs index 0d0c0dbb2..c21021a3c 100644 --- a/Definitions/Controllers/OpenVR/ViveWandControllerMappingProfile.cs +++ b/Definitions/Controllers/OpenVR/ViveWandControllerMappingProfile.cs @@ -22,8 +22,8 @@ protected override void Awake() { ControllerMappings = new[] { - new MixedRealityControllerMapping("Vive Wand Controller Left", typeof(ViveWandController), Handedness.Left), - new MixedRealityControllerMapping("Vive Wand Controller Right", typeof(ViveWandController), Handedness.Right), + new MixedRealityControllerMapping("Vive Wand Controller Left", typeof(ViveWandOpenVRController), Handedness.Left), + new MixedRealityControllerMapping("Vive Wand Controller Right", typeof(ViveWandOpenVRController), Handedness.Right), }; }