Removed old VRTK support

This commit is contained in:
Pascal Serrarens 2022-06-30 15:12:45 +02:00
parent 284c77d0a2
commit cb6f90da98
3 changed files with 0 additions and 13 deletions

View File

@ -992,9 +992,6 @@ namespace Passer.Humanoid {
/// <summary>The Unity XR tracker</summary>\ /// <summary>The Unity XR tracker</summary>\
#if pUNITYXR #if pUNITYXR
public UnityXRTracker unityXR = new UnityXRTracker(); public UnityXRTracker unityXR = new UnityXRTracker();
#endif
#if hLEGACYXR
//public UnityVRTracker unity = new UnityVRTracker();
#endif #endif
//#if hOPENVR && (UNITY_STANDALONE_WIN || UNITY_STANDALONE_OSX) //#if hOPENVR && (UNITY_STANDALONE_WIN || UNITY_STANDALONE_OSX)
// public OpenVRHumanoidTracker openVR = new OpenVRHumanoidTracker(); // public OpenVRHumanoidTracker openVR = new OpenVRHumanoidTracker();
@ -1013,10 +1010,6 @@ namespace Passer.Humanoid {
/// <summary>The Wave VR tracker</summary> /// <summary>The Wave VR tracker</summary>
#if hWAVEVR #if hWAVEVR
public WaveVRTracker waveVR = new WaveVRTracker(); public WaveVRTracker waveVR = new WaveVRTracker();
#endif
/// <summary>The VRTK tracker</summary>
#if hVRTK
public VrtkTracker vrtk = new VrtkTracker();
#endif #endif
/// <summary>The Perception Neuron tracker</summary> /// <summary>The Perception Neuron tracker</summary>
#if hNEURON #if hNEURON

View File

@ -199,9 +199,6 @@ namespace Passer.Humanoid {
#if hWAVEVR #if hWAVEVR
public WaveVRHand waveVR = new WaveVRHand(); public WaveVRHand waveVR = new WaveVRHand();
#endif #endif
#if hVRTK
public VrtkHand vrtk = new VrtkHand();
#endif
#if hNEURON #if hNEURON
public NeuronHand neuron = new NeuronHand(); public NeuronHand neuron = new NeuronHand();
#endif #endif

View File

@ -123,9 +123,6 @@ namespace Passer.Humanoid {
#if hWAVEVR #if hWAVEVR
public WaveVRHead waveVR = new WaveVRHead(); public WaveVRHead waveVR = new WaveVRHead();
#endif #endif
#if hVRTK
public VrtkHead vrtk = new VrtkHead();
#endif
#if hNEURON #if hNEURON
public PerceptionNeuronHead neuron = new PerceptionNeuronHead(); public PerceptionNeuronHead neuron = new PerceptionNeuronHead();
#endif #endif