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