using System; namespace UnityEngine.PostProcessing { [Serializable] public class DepthOfFieldModel : PostProcessingModel { public DepthOfFieldModel.Settings settings { get { return this.m_Settings; } set { this.m_Settings = value; } } public override void Reset() { this.m_Settings = DepthOfFieldModel.Settings.defaultSettings; } [SerializeField] private DepthOfFieldModel.Settings m_Settings = DepthOfFieldModel.Settings.defaultSettings; public enum KernelSize { Small, Medium, Large, VeryLarge } [Serializable] public struct Settings { public static DepthOfFieldModel.Settings defaultSettings { get { return new DepthOfFieldModel.Settings { focusDistance = 10f, aperture = 5.6f, focalLength = 50f, useCameraFov = false, kernelSize = DepthOfFieldModel.KernelSize.Medium }; } } [Min(0.1f)] [Tooltip("Distance to the point of focus.")] public float focusDistance; [Range(0.05f, 32f)] [Tooltip("Ratio of aperture (known as f-stop or f-number). The smaller the value is, the shallower the depth of field is.")] public float aperture; [Range(1f, 300f)] [Tooltip("Distance between the lens and the film. The larger the value is, the shallower the depth of field is.")] public float focalLength; [Tooltip("Calculate the focal length automatically from the field-of-view value set on the camera. Using this setting isn't recommended.")] public bool useCameraFov; [Tooltip("Convolution kernel size of the bokeh filter, which determines the maximum radius of bokeh. It also affects the performance (the larger the kernel is, the longer the GPU time is required).")] public DepthOfFieldModel.KernelSize kernelSize; } } }