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

@@ -86,13 +86,8 @@ namespace VIVE.OpenXR
{
if (ASSERT_FEATURE())
{
if (feature.GetJointLocations(isLeft, out XrHandJointLocationEXT[] array, out timestamp))
if (feature.GetJointLocations(isLeft, out handJointLocation, out timestamp))
{
if (l_HandJointLocation == null) { l_HandJointLocation = new List<XrHandJointLocationEXT>(); }
l_HandJointLocation.Clear();
for (int i = 0; i < array.Length; i++) { l_HandJointLocation.Add(array[i]); }
handJointLocation = l_HandJointLocation.ToArray();
return true;
}
}