Skip to content

Commit 0ad6de9

Browse files
committed
Disable Vive hand tracking API layer since it causes issues with OpenComposite.
1 parent d92ab06 commit 0ad6de9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

companion/CustomSetupActions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ protected override void OnAfterInstall(IDictionary savedState)
6767
}
6868

6969
// We are incompatible with these other API layers.
70-
if (value.EndsWith("\\ViveOpenXRFacialTracking.json") && (int)entriesValues[value] == 0)
70+
if ((value.EndsWith("\\ViveOpenXRFacialTracking.json") || value.EndsWith("\\ViveOpenXRHandTracking.json")) && (int)entriesValues[value] == 0)
7171
{
7272
if (incompatibleLayers != "")
7373
{
7474
incompatibleLayers += ", ";
7575
}
76-
incompatibleLayers += "ViveOpenXRFacialTracking.json";
76+
incompatibleLayers += value;
7777
detectedIncompatibleLayer = true;
7878

7979
// This is how we disable a layer.

0 commit comments

Comments
 (0)