Files
Bachelor-Arbeit-Adrian-Haefner/Library/PackageCache/com.unity.xr.arkit@58a677f717be/Runtime/Camera/ARKitWhiteBalanceMode.cs
adriadri6972 d3d9c5f833 upload project
2025-07-31 15:21:08 +02:00

32 lines
802 B
C#

using System;
namespace UnityEngine.XR.ARKit
{
/// <summary>
/// Defines the white balance modes for the camera device.
/// </summary>
[Flags]
public enum ARKitWhiteBalanceMode
{
/// <summary>
/// Update to white balance is unsupported.
/// </summary>
None = 0,
/// <summary>
/// Locks the white balance for the camera device.
/// </summary>
Locked = 1 << 0,
/// <summary>
/// Automatically adjusts the white balance one time, then locks white balance for the camera device.
/// </summary>
Auto = 1 << 1,
/// <summary>
/// Continuously monitors and adjusts the white balance for the camera device.
/// </summary>
ContinuousAuto = 1 << 2,
}
}