WuhuIslandTesting/Library/PackageCache/com.unity.xr.oculus@4.0.0/Runtime/Device.cs
2025-01-07 02:06:59 +01:00

18 lines
No EOL
424 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Unity.XR.Oculus
{
public static partial class Utils
{
/// <summary>
/// Returns the type of the current headset
/// </summary>
/// <returns></returns>
public static SystemHeadset GetSystemHeadsetType()
{
return NativeMethods.GetSystemHeadsetType();
}
}
}