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.arsubsystems@4.../Runtime/CameraSubsystem/CameraFocusMode.cs

23 lines
512 B
C#
Raw Permalink Normal View History

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>
[Description("Fixed")]
Fixed = 0,
/// <summary>
/// The focus will change automatically.
/// </summary>
[Description("Auto")]
Auto = 1,
}
}