diff --git a/Runtime/HumanoidControl/Scripts/Configuration.cs b/Runtime/HumanoidControl/Scripts/Configuration.cs index 3f171f7..4a94874 100644 --- a/Runtime/HumanoidControl/Scripts/Configuration.cs +++ b/Runtime/HumanoidControl/Scripts/Configuration.cs @@ -10,7 +10,6 @@ namespace Passer.Humanoid { public bool viveTrackerSupport = false; public bool oculusSupport = true; public bool windowsMRSupport = true; - public bool vrtkSupport = true; public bool neuronSupport; public bool hi5Support; public bool realsenseSupport; diff --git a/Runtime/HumanoidControl/Scripts/HumanoidControl.cs b/Runtime/HumanoidControl/Scripts/HumanoidControl.cs index 8b95d2a..96ec403 100644 --- a/Runtime/HumanoidControl/Scripts/HumanoidControl.cs +++ b/Runtime/HumanoidControl/Scripts/HumanoidControl.cs @@ -1106,9 +1106,6 @@ namespace Passer.Humanoid { #if hWAVEVR waveVR, #endif -#if hVRTK - vrtk, -#endif #if hNEURON neuronTracker, #endif diff --git a/Runtime/HumanoidControl/Scripts/Targets/HandTarget.cs b/Runtime/HumanoidControl/Scripts/Targets/HandTarget.cs index fb391e7..215df54 100644 --- a/Runtime/HumanoidControl/Scripts/Targets/HandTarget.cs +++ b/Runtime/HumanoidControl/Scripts/Targets/HandTarget.cs @@ -284,10 +284,6 @@ namespace Passer.Humanoid { viveTracker, #endif #endif - -#if hVRTK - vrtk, -#endif #if hREALSENSE //realsenseHand, #endif @@ -1306,14 +1302,7 @@ namespace Passer.Humanoid { //fingers.CalculateFingerRetargeting(); CheckColliders(); -#if hVRTK - // VRTK is not compatible with touch interaction - // because it uses its own EventSystem - // which will be destroyed by humanoid control - if (touchInteraction && !(humanoid.vrtk.enabled && vrtk.enabled)) -#else if (touchInteraction) -#endif StartInteraction(); diff --git a/Runtime/HumanoidControl/Scripts/Targets/HeadTarget.cs b/Runtime/HumanoidControl/Scripts/Targets/HeadTarget.cs index ac595c6..b7aeb82 100644 --- a/Runtime/HumanoidControl/Scripts/Targets/HeadTarget.cs +++ b/Runtime/HumanoidControl/Scripts/Targets/HeadTarget.cs @@ -223,9 +223,6 @@ namespace Passer.Humanoid { unityXR, #endif -#if hVRTK - vrtk, -#endif #if hKINECT1 kinect1, #endif