We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d92ab06 commit 0ad6de9Copy full SHA for 0ad6de9
companion/CustomSetupActions.cs
@@ -67,13 +67,13 @@ protected override void OnAfterInstall(IDictionary savedState)
67
}
68
69
// We are incompatible with these other API layers.
70
- if (value.EndsWith("\\ViveOpenXRFacialTracking.json") && (int)entriesValues[value] == 0)
+ if ((value.EndsWith("\\ViveOpenXRFacialTracking.json") || value.EndsWith("\\ViveOpenXRHandTracking.json")) && (int)entriesValues[value] == 0)
71
{
72
if (incompatibleLayers != "")
73
74
incompatibleLayers += ", ";
75
76
- incompatibleLayers += "ViveOpenXRFacialTracking.json";
+ incompatibleLayers += value;
77
detectedIncompatibleLayer = true;
78
79
// This is how we disable a layer.
0 commit comments