VR4RoboticArm3/VR4RoboticArm/Library/PackageCache/com.unity.xr.oculus/Runtime/Device.cs
IonutMocanu 1d45ac8df0 Main1
2025-09-15 21:53:38 +03:00

18 lines
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();
}
}
}