UniversalAdditionalCameraData.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using UnityEditor;
  5. using UnityEngine.Scripting.APIUpdating;
  6. using UnityEngine.Serialization;
  7. using UnityEngine.Rendering;
  8. using System.ComponentModel;
  9. namespace UnityEngine.Rendering.LWRP
  10. {
  11. [Obsolete("LWRP -> Universal (UnityUpgradable) -> UnityEngine.Rendering.Universal.UniversalAdditionalCameraData", true)]
  12. public class LWRPAdditionalCameraData
  13. {
  14. }
  15. }
  16. namespace UnityEngine.Rendering.Universal
  17. {
  18. /// <summary>
  19. /// Holds information about whether to override certain camera rendering options from the render pipeline asset.
  20. /// When set to <c>Off</c> option will be disabled regardless of what is set on the pipeline asset.
  21. /// When set to <c>On</c> option will be enabled regardless of what is set on the pipeline asset.
  22. /// When set to <c>UsePipelineSetting</c> value set in the <see cref="UniversalRenderPipelineAsset"/>.
  23. /// </summary>
  24. [MovedFrom("UnityEngine.Rendering.LWRP")] public enum CameraOverrideOption
  25. {
  26. Off,
  27. On,
  28. UsePipelineSettings,
  29. }
  30. //[Obsolete("Renderer override is no longer used, renderers are referenced by index on the pipeline asset.")]
  31. [MovedFrom("UnityEngine.Rendering.LWRP")] public enum RendererOverrideOption
  32. {
  33. Custom,
  34. UsePipelineSettings,
  35. }
  36. /// <summary>
  37. /// Holds information about the post-processing anti-aliasing mode.
  38. /// When set to <c>None</c> no post-processing anti-aliasing pass will be performed.
  39. /// When set to <c>Fast</c> a fast approximated anti-aliasing pass will render when resolving the camera to screen.
  40. /// When set to <c>SubpixelMorphologicalAntiAliasing</c> SMAA pass will render when resolving the camera to screen. You can choose the SMAA quality by setting <seealso cref="AntialiasingQuality"/>
  41. /// </summary>
  42. public enum AntialiasingMode
  43. {
  44. None,
  45. FastApproximateAntialiasing,
  46. SubpixelMorphologicalAntiAliasing,
  47. //TemporalAntialiasing
  48. }
  49. /// <summary>
  50. /// Holds information about the render type of a camera. Options are Base or Overlay.
  51. /// Base rendering type allows the camera to render to either the screen or to a texture.
  52. /// Overlay rendering type allows the camera to render on top of a previous camera output, thus compositing camera results.
  53. /// </summary>
  54. public enum CameraRenderType
  55. {
  56. Base,
  57. Overlay,
  58. }
  59. /// <summary>
  60. /// Holds information about the output target for a camera.
  61. /// Only used for cameras of render type Base. <seealso cref="CameraRenderType"/>.
  62. /// </summary>
  63. [Obsolete("This enum is deprecated.")]
  64. [EditorBrowsable(EditorBrowsableState.Never)]
  65. public enum CameraOutput
  66. {
  67. Screen,
  68. Texture,
  69. [Obsolete("Use CameraOutput.Screen instead.", false)]
  70. [EditorBrowsable(EditorBrowsableState.Never)]
  71. Camera = Screen,
  72. }
  73. /// <summary>
  74. /// Controls SMAA anti-aliasing quality.
  75. /// </summary>
  76. public enum AntialiasingQuality
  77. {
  78. Low,
  79. Medium,
  80. High
  81. }
  82. /// <summary>
  83. /// Contains extension methods for Camera class.
  84. /// </summary>
  85. public static class CameraExtensions
  86. {
  87. /// <summary>
  88. /// Universal Render Pipeline exposes additional rendering data in a separate component.
  89. /// This method returns the additional data component for the given camera or create one if it doesn't exists yet.
  90. /// </summary>
  91. /// <param name="camera"></param>
  92. /// <returns>The <c>UniversalAdditinalCameraData</c> for this camera.</returns>
  93. /// <see cref="UniversalAdditionalCameraData"/>
  94. public static UniversalAdditionalCameraData GetUniversalAdditionalCameraData(this Camera camera)
  95. {
  96. var gameObject = camera.gameObject;
  97. bool componentExists = gameObject.TryGetComponent<UniversalAdditionalCameraData>(out var cameraData);
  98. if (!componentExists)
  99. cameraData = gameObject.AddComponent<UniversalAdditionalCameraData>();
  100. return cameraData;
  101. }
  102. }
  103. static class CameraTypeUtility
  104. {
  105. static string[] s_CameraTypeNames = Enum.GetNames(typeof(CameraRenderType)).ToArray();
  106. public static string GetName(this CameraRenderType type)
  107. {
  108. int typeInt = (int)type;
  109. if (typeInt < 0 || typeInt >= s_CameraTypeNames.Length)
  110. typeInt = (int)CameraRenderType.Base;
  111. return s_CameraTypeNames[typeInt];
  112. }
  113. }
  114. [DisallowMultipleComponent]
  115. [RequireComponent(typeof(Camera))]
  116. [ImageEffectAllowedInSceneView]
  117. [MovedFrom("UnityEngine.Rendering.LWRP")] public class UniversalAdditionalCameraData : MonoBehaviour, ISerializationCallbackReceiver
  118. {
  119. [Tooltip("If enabled shadows will render for this camera.")]
  120. [FormerlySerializedAs("renderShadows"), SerializeField]
  121. bool m_RenderShadows = true;
  122. [Tooltip("If enabled depth texture will render for this camera bound as _CameraDepthTexture.")]
  123. [SerializeField]
  124. CameraOverrideOption m_RequiresDepthTextureOption = CameraOverrideOption.UsePipelineSettings;
  125. [Tooltip("If enabled opaque color texture will render for this camera and bound as _CameraOpaqueTexture.")]
  126. [SerializeField]
  127. CameraOverrideOption m_RequiresOpaqueTextureOption = CameraOverrideOption.UsePipelineSettings;
  128. [SerializeField] CameraRenderType m_CameraType = CameraRenderType.Base;
  129. [SerializeField] List<Camera> m_Cameras = new List<Camera>();
  130. [SerializeField] int m_RendererIndex = -1;
  131. [SerializeField] LayerMask m_VolumeLayerMask = 1; // "Default"
  132. [SerializeField] Transform m_VolumeTrigger = null;
  133. [SerializeField] bool m_RenderPostProcessing = false;
  134. [SerializeField] AntialiasingMode m_Antialiasing = AntialiasingMode.None;
  135. [SerializeField] AntialiasingQuality m_AntialiasingQuality = AntialiasingQuality.High;
  136. [SerializeField] bool m_StopNaN = false;
  137. [SerializeField] bool m_Dithering = false;
  138. [SerializeField] bool m_ClearDepth = true;
  139. // Deprecated:
  140. [FormerlySerializedAs("requiresDepthTexture"), SerializeField]
  141. bool m_RequiresDepthTexture = false;
  142. [FormerlySerializedAs("requiresColorTexture"), SerializeField]
  143. bool m_RequiresColorTexture = false;
  144. [HideInInspector] [SerializeField] float m_Version = 2;
  145. public float version => m_Version;
  146. static UniversalAdditionalCameraData s_DefaultAdditionalCameraData = null;
  147. internal static UniversalAdditionalCameraData defaultAdditionalCameraData
  148. {
  149. get
  150. {
  151. if (s_DefaultAdditionalCameraData == null)
  152. s_DefaultAdditionalCameraData = new UniversalAdditionalCameraData();
  153. return s_DefaultAdditionalCameraData;
  154. }
  155. }
  156. /// <summary>
  157. /// Controls if this camera should render shadows.
  158. /// </summary>
  159. public bool renderShadows
  160. {
  161. get => m_RenderShadows;
  162. set => m_RenderShadows = value;
  163. }
  164. /// <summary>
  165. /// Controls if a camera should render depth.
  166. /// The depth is available to be bound in shaders as _CameraDepthTexture.
  167. /// <seealso cref="CameraOverrideOption"/>
  168. /// </summary>
  169. public CameraOverrideOption requiresDepthOption
  170. {
  171. get => m_RequiresDepthTextureOption;
  172. set => m_RequiresDepthTextureOption = value;
  173. }
  174. /// <summary>
  175. /// Controls if a camera should copy the color contents of a camera after rendering opaques.
  176. /// The color texture is available to be bound in shaders as _CameraOpaqueTexture.
  177. /// </summary>
  178. public CameraOverrideOption requiresColorOption
  179. {
  180. get => m_RequiresOpaqueTextureOption;
  181. set => m_RequiresOpaqueTextureOption = value;
  182. }
  183. /// <summary>
  184. /// Returns the camera renderType.
  185. /// <see cref="CameraRenderType"/>.
  186. /// </summary>
  187. public CameraRenderType renderType
  188. {
  189. get => m_CameraType;
  190. set => m_CameraType = value;
  191. }
  192. #region deprecated
  193. /// <summary>
  194. /// Returns the camera output type. Only valid for Base cameras.
  195. /// <see cref="CameraOutput"/>.
  196. /// <seealso cref="CameraRenderType"/>.
  197. /// <seealso cref="Camera"/>
  198. /// </summary>
  199. [Obsolete("CameraOutput has been deprecated. Use Camera.targetTexture instead.")]
  200. [EditorBrowsable(EditorBrowsableState.Never)]
  201. public CameraOutput cameraOutput
  202. {
  203. get
  204. {
  205. gameObject.TryGetComponent<Camera>(out var camera);
  206. if (camera?.targetTexture == null)
  207. return CameraOutput.Screen;
  208. return CameraOutput.Texture;
  209. }
  210. set { }
  211. }
  212. [Obsolete("AddCamera has been deprecated. You can add cameras to the stack by calling <c>cameraStack</c> property and modifying the camera stack list.")]
  213. [EditorBrowsable(EditorBrowsableState.Never)]
  214. public void AddCamera(Camera camera)
  215. {
  216. m_Cameras.Add(camera);
  217. }
  218. [Obsolete("cameras property has been deprecated. Use cameraStack property instead.")]
  219. [EditorBrowsable(EditorBrowsableState.Never)]
  220. public List<Camera> cameras => cameraStack;
  221. #endregion
  222. /// <summary>
  223. /// Returns the camera stack. Only valid for Base cameras.
  224. /// Overlay cameras have no stack and will return null.
  225. /// <seealso cref="CameraRenderType"/>.
  226. /// </summary>
  227. public List<Camera> cameraStack
  228. {
  229. get
  230. {
  231. if (renderType != CameraRenderType.Base)
  232. {
  233. var camera = gameObject.GetComponent<Camera>();
  234. Debug.LogWarning(string.Format("{0}: This camera is of {1} type. Only Base cameras can have a camera stack.", camera.name, renderType));
  235. return null;
  236. }
  237. if (scriptableRenderer.supportedRenderingFeatures.cameraStacking == false)
  238. {
  239. var camera = gameObject.GetComponent<Camera>();
  240. Debug.LogWarning(string.Format("{0}: This camera has a ScriptableRenderer that doesn't support camera stacking. Camera stack is null.", camera.name));
  241. return null;
  242. }
  243. return m_Cameras;
  244. }
  245. }
  246. /// <summary>
  247. /// If true, this camera will clear depth value before rendering. Only valid for Overlay cameras.
  248. /// </summary>
  249. public bool clearDepth
  250. {
  251. get => m_ClearDepth;
  252. }
  253. /// <summary>
  254. /// Returns true if this camera needs to render depth information in a texture.
  255. /// If enabled, depth texture is available to be bound and read from shaders as _CameraDepthTexture after rendering skybox.
  256. /// </summary>
  257. public bool requiresDepthTexture
  258. {
  259. get
  260. {
  261. if (m_RequiresDepthTextureOption == CameraOverrideOption.UsePipelineSettings)
  262. {
  263. return UniversalRenderPipeline.asset.supportsCameraDepthTexture;
  264. }
  265. else
  266. {
  267. return m_RequiresDepthTextureOption == CameraOverrideOption.On;
  268. }
  269. }
  270. set { m_RequiresDepthTextureOption = (value) ? CameraOverrideOption.On : CameraOverrideOption.Off; }
  271. }
  272. /// <summary>
  273. /// Returns true if this camera requires to color information in a texture.
  274. /// If enabled, color texture is available to be bound and read from shaders as _CameraOpaqueTexture after rendering skybox.
  275. /// </summary>
  276. public bool requiresColorTexture
  277. {
  278. get
  279. {
  280. if (m_RequiresOpaqueTextureOption == CameraOverrideOption.UsePipelineSettings)
  281. {
  282. return UniversalRenderPipeline.asset.supportsCameraOpaqueTexture;
  283. }
  284. else
  285. {
  286. return m_RequiresOpaqueTextureOption == CameraOverrideOption.On;
  287. }
  288. }
  289. set { m_RequiresOpaqueTextureOption = (value) ? CameraOverrideOption.On : CameraOverrideOption.Off; }
  290. }
  291. /// <summary>
  292. /// Returns the <see cref="ScriptableRenderer"/> that is used to render this camera.
  293. /// </summary>
  294. public ScriptableRenderer scriptableRenderer
  295. {
  296. get => UniversalRenderPipeline.asset.GetRenderer(m_RendererIndex);
  297. }
  298. /// <summary>
  299. /// Use this to set this Camera's current <see cref="ScriptableRenderer"/> to one listed on the Render Pipeline Asset. Takes an index that maps to the list on the Render Pipeline Asset.
  300. /// </summary>
  301. /// <param name="index">The index that maps to the RendererData list on the currently assigned Render Pipeline Asset</param>
  302. public void SetRenderer(int index)
  303. {
  304. m_RendererIndex = index;
  305. }
  306. public LayerMask volumeLayerMask
  307. {
  308. get => m_VolumeLayerMask;
  309. set => m_VolumeLayerMask = value;
  310. }
  311. public Transform volumeTrigger
  312. {
  313. get => m_VolumeTrigger;
  314. set => m_VolumeTrigger = value;
  315. }
  316. /// <summary>
  317. /// Returns true if this camera should render post-processing.
  318. /// </summary>
  319. public bool renderPostProcessing
  320. {
  321. get => m_RenderPostProcessing;
  322. set => m_RenderPostProcessing = value;
  323. }
  324. /// <summary>
  325. /// Returns the current anti-aliasing mode used by this camera.
  326. /// <see cref="AntialiasingMode"/>.
  327. /// </summary>
  328. public AntialiasingMode antialiasing
  329. {
  330. get => m_Antialiasing;
  331. set => m_Antialiasing = value;
  332. }
  333. /// <summary>
  334. /// Returns the current anti-aliasing quality used by this camera.
  335. /// <seealso cref="antialiasingQuality"/>.
  336. /// </summary>
  337. public AntialiasingQuality antialiasingQuality
  338. {
  339. get => m_AntialiasingQuality;
  340. set => m_AntialiasingQuality = value;
  341. }
  342. public bool stopNaN
  343. {
  344. get => m_StopNaN;
  345. set => m_StopNaN = value;
  346. }
  347. public bool dithering
  348. {
  349. get => m_Dithering;
  350. set => m_Dithering = value;
  351. }
  352. public void OnBeforeSerialize()
  353. {
  354. }
  355. public void OnAfterDeserialize()
  356. {
  357. if (version <= 1)
  358. {
  359. m_RequiresDepthTextureOption = (m_RequiresDepthTexture) ? CameraOverrideOption.On : CameraOverrideOption.Off;
  360. m_RequiresOpaqueTextureOption = (m_RequiresColorTexture) ? CameraOverrideOption.On : CameraOverrideOption.Off;
  361. }
  362. }
  363. public void OnDrawGizmos()
  364. {
  365. string path = "Packages/com.unity.render-pipelines.universal/Editor/Gizmos/";
  366. string gizmoName = "";
  367. Color tint = Color.white;
  368. if (m_CameraType == CameraRenderType.Base)
  369. {
  370. gizmoName = $"{path}Camera_Base.png";
  371. }
  372. else if (m_CameraType == CameraRenderType.Overlay)
  373. {
  374. gizmoName = $"{path}Camera_Overlay.png";
  375. }
  376. #if UNITY_2019_2_OR_NEWER
  377. #if UNITY_EDITOR
  378. if (Selection.activeObject == gameObject)
  379. {
  380. // Get the preferences selection color
  381. tint = SceneView.selectedOutlineColor;
  382. }
  383. #endif
  384. if (!string.IsNullOrEmpty(gizmoName))
  385. {
  386. Gizmos.DrawIcon(transform.position, gizmoName, true, tint);
  387. }
  388. if (renderPostProcessing)
  389. {
  390. Gizmos.DrawIcon(transform.position, $"{path}Camera_PostProcessing.png", true, tint);
  391. }
  392. #else
  393. if (renderPostProcessing)
  394. {
  395. Gizmos.DrawIcon(transform.position, $"{path}Camera_PostProcessing.png");
  396. }
  397. Gizmos.DrawIcon(transform.position, gizmoName);
  398. #endif
  399. }
  400. }
  401. }