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.arkit@4.2.10/Runtime/Frameworks/ARKit/ARCoachingGoal.cs

30 lines
813 B
C#
Raw Normal View History

2025-04-28 10:27:07 +08:00
namespace UnityEngine.XR.ARKit
{
/// <summary>
/// Defines the goal for the [ARCoachingOverlayView](https://developer.apple.com/documentation/arkit/arcoachingoverlayview).
/// See [ARCoachingGoal](https://developer.apple.com/documentation/arkit/arcoachinggoal) for details.
/// </summary>
public enum ARCoachingGoal
{
/// <summary>
/// The app requires basic world tracking.
/// </summary>
Tracking,
/// <summary>
/// The app requires a horizontal plane.
/// </summary>
HorizontalPlane,
/// <summary>
/// The app requires a vertical plane.
/// </summary>
VerticalPlane,
/// <summary>
/// The app requires a plane of any type.
/// </summary>
AnyPlane
}
}