version 2.5.0

This commit is contained in:
Sean Lu
2025-01-10 17:17:03 +08:00
parent ddc3c4c6d8
commit 2372c9429a
1086 changed files with 290974 additions and 77367 deletions

View File

@@ -0,0 +1,29 @@
// Copyright HTC Corporation All Rights Reserved.
namespace VIVE.OpenXR
{
public class XR_EXT_user_presence_defs
{
/// <summary>
/// Checks if an user is present. Default is true.
/// </summary>
/// <returns>True for present.</returns>
public virtual bool IsUserPresent() { return true; }
}
public static class XR_EXT_user_presence
{
static XR_EXT_user_presence_defs m_Instance = null;
public static XR_EXT_user_presence_defs Interop
{
get
{
if (m_Instance == null)
{
m_Instance = new XR_EXT_user_presence_impls();
}
return m_Instance;
}
}
}
}