// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.MixedReality.Toolkit.Experimental.UnityAR { /// /// Enumeration indicating the available types of augmented reality tracking poses. /// public enum ArTrackedPose { /// /// The left eye of a head mounted device. /// LeftEye = 0, /// /// The left eye of a head mounted device. /// RightEye = 1, /// /// The center eye of a head mounted device, this is typically the default for most such devices. /// Center = 2, /// /// The "head" eye of a head mounted device, this location is often slightly above the center eye for most such devices. /// Head = 3, /// /// The left hand controller pose. /// LeftPose = 4, /// /// The right hand controller pose. /// RightPose = 5, /// /// The color camera of a mobile (ex: phone) device. /// ColorCamera = 6 } }