From cb6f90da98d95e44e3a7a2e2112924b5acc7dc8d Mon Sep 17 00:00:00 2001 From: Pascal Serrarens Date: Thu, 30 Jun 2022 15:12:45 +0200 Subject: [PATCH] Removed old VRTK support --- Runtime/HumanoidControl/Scripts/HumanoidControl.cs | 7 ------- Runtime/HumanoidControl/Scripts/Targets/HandTarget.cs | 3 --- Runtime/HumanoidControl/Scripts/Targets/HeadTarget.cs | 3 --- 3 files changed, 13 deletions(-) diff --git a/Runtime/HumanoidControl/Scripts/HumanoidControl.cs b/Runtime/HumanoidControl/Scripts/HumanoidControl.cs index dbbfbe9..8b95d2a 100644 --- a/Runtime/HumanoidControl/Scripts/HumanoidControl.cs +++ b/Runtime/HumanoidControl/Scripts/HumanoidControl.cs @@ -992,9 +992,6 @@ namespace Passer.Humanoid { /// The Unity XR tracker\ #if pUNITYXR public UnityXRTracker unityXR = new UnityXRTracker(); -#endif -#if hLEGACYXR - //public UnityVRTracker unity = new UnityVRTracker(); #endif //#if hOPENVR && (UNITY_STANDALONE_WIN || UNITY_STANDALONE_OSX) // public OpenVRHumanoidTracker openVR = new OpenVRHumanoidTracker(); @@ -1013,10 +1010,6 @@ namespace Passer.Humanoid { /// The Wave VR tracker #if hWAVEVR public WaveVRTracker waveVR = new WaveVRTracker(); -#endif - /// The VRTK tracker -#if hVRTK - public VrtkTracker vrtk = new VrtkTracker(); #endif /// The Perception Neuron tracker #if hNEURON diff --git a/Runtime/HumanoidControl/Scripts/Targets/HandTarget.cs b/Runtime/HumanoidControl/Scripts/Targets/HandTarget.cs index f28773c..fb391e7 100644 --- a/Runtime/HumanoidControl/Scripts/Targets/HandTarget.cs +++ b/Runtime/HumanoidControl/Scripts/Targets/HandTarget.cs @@ -199,9 +199,6 @@ namespace Passer.Humanoid { #if hWAVEVR public WaveVRHand waveVR = new WaveVRHand(); #endif -#if hVRTK - public VrtkHand vrtk = new VrtkHand(); -#endif #if hNEURON public NeuronHand neuron = new NeuronHand(); #endif diff --git a/Runtime/HumanoidControl/Scripts/Targets/HeadTarget.cs b/Runtime/HumanoidControl/Scripts/Targets/HeadTarget.cs index 16c2822..ac595c6 100644 --- a/Runtime/HumanoidControl/Scripts/Targets/HeadTarget.cs +++ b/Runtime/HumanoidControl/Scripts/Targets/HeadTarget.cs @@ -123,9 +123,6 @@ namespace Passer.Humanoid { #if hWAVEVR public WaveVRHead waveVR = new WaveVRHead(); #endif -#if hVRTK - public VrtkHead vrtk = new VrtkHead(); -#endif #if hNEURON public PerceptionNeuronHead neuron = new PerceptionNeuronHead(); #endif