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/PlaneTracking/PlaneDetectionMode.cs

27 lines
587 B
C#

using System;
namespace UnityEngine.XR.ARSubsystems
{
/// <summary>
/// Used to configure the types of planes to detect.
/// </summary>
[Flags]
public enum PlaneDetectionMode
{
/// <summary>
/// Plane detection is disabled.
/// </summary>
None = 0,
/// <summary>
/// Plane detection will only detect horizontal planes.
/// </summary>
Horizontal = 1 << 0,
/// <summary>
/// Plane detection will only detect vertical planes.
/// </summary>
Vertical = 1 << 1
}
}