18 lines
No EOL
424 B
C#
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();
|
|
}
|
|
}
|
|
} |