namespace UnityEngine.XR.ARKit
{
///
/// Defines the goal for the [ARCoachingOverlayView](https://developer.apple.com/documentation/arkit/arcoachingoverlayview).
/// See [ARCoachingGoal](https://developer.apple.com/documentation/arkit/arcoachinggoal) for details.
///
public enum ARCoachingGoal
{
///
/// The app requires basic world tracking.
///
Tracking,
///
/// The app requires a horizontal plane.
///
HorizontalPlane,
///
/// The app requires a vertical plane.
///
VerticalPlane,
///
/// The app requires a plane of any type.
///
AnyPlane
}
}