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