This repository has been archived on 2020-08-22. You can view files and clone it, but cannot push or open issues or pull requests.
flutter-unity-view-widget/example/unity/ARDemoApp/Library/PackageCache/com.unity.xr.arkit@3.0.0-pr.../Runtime/ARCoachingOverlayTransition.cs

20 lines
680 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
}
}