This repository has been archived on 2025-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
ARPlusSystem/ARPlusSystem-250418/Library/PackageCache/com.unity.xr.arsubsystems@4.../Runtime/Supported.cs

24 lines
579 B
C#
Raw Normal View History

namespace UnityEngine.XR.ARSubsystems
{
/// <summary>
/// Used to indicate whether a feature or capability is supported.
/// </summary>
public enum Supported
{
/// <summary>
/// Support is unknown. This could be because support is still being determined.
/// </summary>
Unknown,
/// <summary>
/// The feature or capability is not supported.
/// </summary>
Unsupported,
/// <summary>
/// The feature or capability is supported.
/// </summary>
Supported,
}
}