using System; using System.Collections.Generic; using System.Linq; using UnityEditor; using UnityEngine.Scripting.APIUpdating; using UnityEngine.Serialization; using UnityEngine.Rendering; using System.ComponentModel; namespace UnityEngine.Rendering.LWRP { [Obsolete("LWRP -> Universal (UnityUpgradable) -> UnityEngine.Rendering.Universal.UniversalAdditionalCameraData", true)] public class LWRPAdditionalCameraData { } } namespace UnityEngine.Rendering.Universal { /// /// Holds information about whether to override certain camera rendering options from the render pipeline asset. /// When set to Off option will be disabled regardless of what is set on the pipeline asset. /// When set to On option will be enabled regardless of what is set on the pipeline asset. /// When set to UsePipelineSetting value set in the . /// [MovedFrom("UnityEngine.Rendering.LWRP")] public enum CameraOverrideOption { Off, On, UsePipelineSettings, } //[Obsolete("Renderer override is no longer used, renderers are referenced by index on the pipeline asset.")] [MovedFrom("UnityEngine.Rendering.LWRP")] public enum RendererOverrideOption { Custom, UsePipelineSettings, } /// /// Holds information about the post-processing anti-aliasing mode. /// When set to None no post-processing anti-aliasing pass will be performed. /// When set to Fast a fast approximated anti-aliasing pass will render when resolving the camera to screen. /// When set to SubpixelMorphologicalAntiAliasing SMAA pass will render when resolving the camera to screen. You can choose the SMAA quality by setting /// public enum AntialiasingMode { None, FastApproximateAntialiasing, SubpixelMorphologicalAntiAliasing, //TemporalAntialiasing } /// /// Holds information about the render type of a camera. Options are Base or Overlay. /// Base rendering type allows the camera to render to either the screen or to a texture. /// Overlay rendering type allows the camera to render on top of a previous camera output, thus compositing camera results. /// public enum CameraRenderType { Base, Overlay, } /// /// Holds information about the output target for a camera. /// Only used for cameras of render type Base. . /// [Obsolete("This enum is deprecated.")] [EditorBrowsable(EditorBrowsableState.Never)] public enum CameraOutput { Screen, Texture, [Obsolete("Use CameraOutput.Screen instead.", false)] [EditorBrowsable(EditorBrowsableState.Never)] Camera = Screen, } /// /// Controls SMAA anti-aliasing quality. /// public enum AntialiasingQuality { Low, Medium, High } /// /// Contains extension methods for Camera class. /// public static class CameraExtensions { /// /// Universal Render Pipeline exposes additional rendering data in a separate component. /// This method returns the additional data component for the given camera or create one if it doesn't exists yet. /// /// /// The UniversalAdditinalCameraData for this camera. /// public static UniversalAdditionalCameraData GetUniversalAdditionalCameraData(this Camera camera) { var gameObject = camera.gameObject; bool componentExists = gameObject.TryGetComponent(out var cameraData); if (!componentExists) cameraData = gameObject.AddComponent(); return cameraData; } } static class CameraTypeUtility { static string[] s_CameraTypeNames = Enum.GetNames(typeof(CameraRenderType)).ToArray(); public static string GetName(this CameraRenderType type) { int typeInt = (int)type; if (typeInt < 0 || typeInt >= s_CameraTypeNames.Length) typeInt = (int)CameraRenderType.Base; return s_CameraTypeNames[typeInt]; } } [DisallowMultipleComponent] [RequireComponent(typeof(Camera))] [ImageEffectAllowedInSceneView] [MovedFrom("UnityEngine.Rendering.LWRP")] public class UniversalAdditionalCameraData : MonoBehaviour, ISerializationCallbackReceiver { [Tooltip("If enabled shadows will render for this camera.")] [FormerlySerializedAs("renderShadows"), SerializeField] bool m_RenderShadows = true; [Tooltip("If enabled depth texture will render for this camera bound as _CameraDepthTexture.")] [SerializeField] CameraOverrideOption m_RequiresDepthTextureOption = CameraOverrideOption.UsePipelineSettings; [Tooltip("If enabled opaque color texture will render for this camera and bound as _CameraOpaqueTexture.")] [SerializeField] CameraOverrideOption m_RequiresOpaqueTextureOption = CameraOverrideOption.UsePipelineSettings; [SerializeField] CameraRenderType m_CameraType = CameraRenderType.Base; [SerializeField] List m_Cameras = new List(); [SerializeField] int m_RendererIndex = -1; [SerializeField] LayerMask m_VolumeLayerMask = 1; // "Default" [SerializeField] Transform m_VolumeTrigger = null; [SerializeField] bool m_RenderPostProcessing = false; [SerializeField] AntialiasingMode m_Antialiasing = AntialiasingMode.None; [SerializeField] AntialiasingQuality m_AntialiasingQuality = AntialiasingQuality.High; [SerializeField] bool m_StopNaN = false; [SerializeField] bool m_Dithering = false; [SerializeField] bool m_ClearDepth = true; // Deprecated: [FormerlySerializedAs("requiresDepthTexture"), SerializeField] bool m_RequiresDepthTexture = false; [FormerlySerializedAs("requiresColorTexture"), SerializeField] bool m_RequiresColorTexture = false; [HideInInspector] [SerializeField] float m_Version = 2; public float version => m_Version; static UniversalAdditionalCameraData s_DefaultAdditionalCameraData = null; internal static UniversalAdditionalCameraData defaultAdditionalCameraData { get { if (s_DefaultAdditionalCameraData == null) s_DefaultAdditionalCameraData = new UniversalAdditionalCameraData(); return s_DefaultAdditionalCameraData; } } /// /// Controls if this camera should render shadows. /// public bool renderShadows { get => m_RenderShadows; set => m_RenderShadows = value; } /// /// Controls if a camera should render depth. /// The depth is available to be bound in shaders as _CameraDepthTexture. /// /// public CameraOverrideOption requiresDepthOption { get => m_RequiresDepthTextureOption; set => m_RequiresDepthTextureOption = value; } /// /// Controls if a camera should copy the color contents of a camera after rendering opaques. /// The color texture is available to be bound in shaders as _CameraOpaqueTexture. /// public CameraOverrideOption requiresColorOption { get => m_RequiresOpaqueTextureOption; set => m_RequiresOpaqueTextureOption = value; } /// /// Returns the camera renderType. /// . /// public CameraRenderType renderType { get => m_CameraType; set => m_CameraType = value; } #region deprecated /// /// Returns the camera output type. Only valid for Base cameras. /// . /// . /// /// [Obsolete("CameraOutput has been deprecated. Use Camera.targetTexture instead.")] [EditorBrowsable(EditorBrowsableState.Never)] public CameraOutput cameraOutput { get { gameObject.TryGetComponent(out var camera); if (camera?.targetTexture == null) return CameraOutput.Screen; return CameraOutput.Texture; } set { } } [Obsolete("AddCamera has been deprecated. You can add cameras to the stack by calling cameraStack property and modifying the camera stack list.")] [EditorBrowsable(EditorBrowsableState.Never)] public void AddCamera(Camera camera) { m_Cameras.Add(camera); } [Obsolete("cameras property has been deprecated. Use cameraStack property instead.")] [EditorBrowsable(EditorBrowsableState.Never)] public List cameras => cameraStack; #endregion /// /// Returns the camera stack. Only valid for Base cameras. /// Overlay cameras have no stack and will return null. /// . /// public List cameraStack { get { if (renderType != CameraRenderType.Base) { var camera = gameObject.GetComponent(); Debug.LogWarning(string.Format("{0}: This camera is of {1} type. Only Base cameras can have a camera stack.", camera.name, renderType)); return null; } if (scriptableRenderer.supportedRenderingFeatures.cameraStacking == false) { var camera = gameObject.GetComponent(); Debug.LogWarning(string.Format("{0}: This camera has a ScriptableRenderer that doesn't support camera stacking. Camera stack is null.", camera.name)); return null; } return m_Cameras; } } /// /// If true, this camera will clear depth value before rendering. Only valid for Overlay cameras. /// public bool clearDepth { get => m_ClearDepth; } /// /// Returns true if this camera needs to render depth information in a texture. /// If enabled, depth texture is available to be bound and read from shaders as _CameraDepthTexture after rendering skybox. /// public bool requiresDepthTexture { get { if (m_RequiresDepthTextureOption == CameraOverrideOption.UsePipelineSettings) { return UniversalRenderPipeline.asset.supportsCameraDepthTexture; } else { return m_RequiresDepthTextureOption == CameraOverrideOption.On; } } set { m_RequiresDepthTextureOption = (value) ? CameraOverrideOption.On : CameraOverrideOption.Off; } } /// /// Returns true if this camera requires to color information in a texture. /// If enabled, color texture is available to be bound and read from shaders as _CameraOpaqueTexture after rendering skybox. /// public bool requiresColorTexture { get { if (m_RequiresOpaqueTextureOption == CameraOverrideOption.UsePipelineSettings) { return UniversalRenderPipeline.asset.supportsCameraOpaqueTexture; } else { return m_RequiresOpaqueTextureOption == CameraOverrideOption.On; } } set { m_RequiresOpaqueTextureOption = (value) ? CameraOverrideOption.On : CameraOverrideOption.Off; } } /// /// Returns the that is used to render this camera. /// public ScriptableRenderer scriptableRenderer { get => UniversalRenderPipeline.asset.GetRenderer(m_RendererIndex); } /// /// Use this to set this Camera's current to one listed on the Render Pipeline Asset. Takes an index that maps to the list on the Render Pipeline Asset. /// /// The index that maps to the RendererData list on the currently assigned Render Pipeline Asset public void SetRenderer(int index) { m_RendererIndex = index; } public LayerMask volumeLayerMask { get => m_VolumeLayerMask; set => m_VolumeLayerMask = value; } public Transform volumeTrigger { get => m_VolumeTrigger; set => m_VolumeTrigger = value; } /// /// Returns true if this camera should render post-processing. /// public bool renderPostProcessing { get => m_RenderPostProcessing; set => m_RenderPostProcessing = value; } /// /// Returns the current anti-aliasing mode used by this camera. /// . /// public AntialiasingMode antialiasing { get => m_Antialiasing; set => m_Antialiasing = value; } /// /// Returns the current anti-aliasing quality used by this camera. /// . /// public AntialiasingQuality antialiasingQuality { get => m_AntialiasingQuality; set => m_AntialiasingQuality = value; } public bool stopNaN { get => m_StopNaN; set => m_StopNaN = value; } public bool dithering { get => m_Dithering; set => m_Dithering = value; } public void OnBeforeSerialize() { } public void OnAfterDeserialize() { if (version <= 1) { m_RequiresDepthTextureOption = (m_RequiresDepthTexture) ? CameraOverrideOption.On : CameraOverrideOption.Off; m_RequiresOpaqueTextureOption = (m_RequiresColorTexture) ? CameraOverrideOption.On : CameraOverrideOption.Off; } } public void OnDrawGizmos() { string path = "Packages/com.unity.render-pipelines.universal/Editor/Gizmos/"; string gizmoName = ""; Color tint = Color.white; if (m_CameraType == CameraRenderType.Base) { gizmoName = $"{path}Camera_Base.png"; } else if (m_CameraType == CameraRenderType.Overlay) { gizmoName = $"{path}Camera_Overlay.png"; } #if UNITY_2019_2_OR_NEWER #if UNITY_EDITOR if (Selection.activeObject == gameObject) { // Get the preferences selection color tint = SceneView.selectedOutlineColor; } #endif if (!string.IsNullOrEmpty(gizmoName)) { Gizmos.DrawIcon(transform.position, gizmoName, true, tint); } if (renderPostProcessing) { Gizmos.DrawIcon(transform.position, $"{path}Camera_PostProcessing.png", true, tint); } #else if (renderPostProcessing) { Gizmos.DrawIcon(transform.position, $"{path}Camera_PostProcessing.png"); } Gizmos.DrawIcon(transform.position, gizmoName); #endif } } }