上传YomovSDK

This commit is contained in:
Sora丶kong
2026-03-03 03:15:46 +08:00
parent 9096da7e6c
commit eb97f31065
6477 changed files with 1932208 additions and 3 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;
}
}
}
}