namespace UnityEngine.XR.ARCore
{
///
/// Describes the direction a camera is facing relative to the device.
///
public enum ArCameraConfigFacingDirection
{
///
/// Camera looks out the back of the device (away from the user).
///
Back = 0,
///
/// Camera looks out the front of the device (towards the user).
///
Front = 1
}
}