version 2.5.1

This commit is contained in:
Sean Lu
2025-01-08 10:28:35 +08:00
parent 2bfa2ad4c7
commit ae66f9c2fe
91 changed files with 7009 additions and 2005 deletions

View File

@@ -281,7 +281,8 @@ namespace VIVE.OpenXR.Editor
}
}
foreach (var feature in settings.GetFeatures<OpenXRFeature>())
var features = settings.GetFeatures<OpenXRFeature>();
foreach (var feature in features)
{
if (!feature.enabled) { continue; }
@@ -310,6 +311,17 @@ namespace VIVE.OpenXR.Editor
}
}
}
if (feature is VIVEFocus3Feature)
{
for (int i = 0; i < features.Length; i++)
{
if (features[i] is Enterprise.ViveEnterpriseCommand)
{
features[i].enabled = true;
}
}
}
}
if (enableHandtracking)