Files
adriadri6972 d3d9c5f833 upload project
2025-07-31 15:21:08 +02:00

21 lines
451 B
C#

using System.ComponentModel;
namespace UnityEngine.XR.ARSubsystems
{
/// <summary>
/// Represents the focus mode of the camera. This is deprecated.
/// </summary>
public enum CameraFocusMode
{
/// <summary>
/// The focus is fixed and does not change.
/// </summary>
Fixed = 0,
/// <summary>
/// The focus will change automatically.
/// </summary>
Auto = 1,
}
}