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/ARCoachingOverlayTransition.cs

20 lines
662 B
C#

namespace UnityEngine.XR.ARKit
{
/// <summary>
/// The type of transition used when showing or hiding the [ARCoachingOverlay](https://developer.apple.com/documentation/arkit/arcoachingoverlayview).
/// </summary>
/// <seealso cref="ARKitSessionSubsystem.SetCoachingActive(bool, ARCoachingOverlayTransition)"/>
public enum ARCoachingOverlayTransition
{
/// <summary>
/// The coaching overlay is shown instantly, with no transition.
/// </summary>
Instant,
/// <summary>
/// The coaching overlay should be animated when being shown or hidden.
/// </summary>
Animated
}
}