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.arcore@4.2.10/Runtime/ArCameraConfigFacingDirecti...

19 lines
480 B
C#

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