diff --git a/Editor/HumanoidFree/Configuration_Editor.cs b/Editor/HumanoidFree/Configuration_Editor.cs index 6298590..0ea6648 100644 --- a/Editor/HumanoidFree/Configuration_Editor.cs +++ b/Editor/HumanoidFree/Configuration_Editor.cs @@ -834,8 +834,8 @@ namespace Passer.Humanoid { } public static bool CheckExtensionOpenVR(Configuration configuration) { - bool enabled = isViveHandSupportAvailable; // configuration.openVRSupport; - CheckExtension(isViveHandTrackingAvailable, "hVIVEHAND"); + bool enabled = true; // configuration.openVRSupport; + CheckExtension(isViveHandTrackingAvailable & isViveHandSupportAvailable, "hVIVEHAND"); return CheckExtension(enabled, openVRPath, "hOPENVR"); }