123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using UnityEngine.Experimental.Rendering;
- namespace UnityEngine.Rendering
- {
- using UnityObject = UnityEngine.Object;
- /// <summary>
- /// Set of utility functions for the Core Scriptable Render Pipeline Library
- /// </summary>
- public static class CoreUtils
- {
- /// <summary>
- /// List of look at matrices for cubemap faces.
- /// Ref: https://msdn.microsoft.com/en-us/library/windows/desktop/bb204881(v=vs.85).aspx
- /// </summary>
- static public readonly Vector3[] lookAtList =
- {
- new Vector3(1.0f, 0.0f, 0.0f),
- new Vector3(-1.0f, 0.0f, 0.0f),
- new Vector3(0.0f, 1.0f, 0.0f),
- new Vector3(0.0f, -1.0f, 0.0f),
- new Vector3(0.0f, 0.0f, 1.0f),
- new Vector3(0.0f, 0.0f, -1.0f),
- };
- /// <summary>
- /// List of up vectors for cubemap faces.
- /// Ref: https://msdn.microsoft.com/en-us/library/windows/desktop/bb204881(v=vs.85).aspx
- /// </summary>
- static public readonly Vector3[] upVectorList =
- {
- new Vector3(0.0f, 1.0f, 0.0f),
- new Vector3(0.0f, 1.0f, 0.0f),
- new Vector3(0.0f, 0.0f, -1.0f),
- new Vector3(0.0f, 0.0f, 1.0f),
- new Vector3(0.0f, 1.0f, 0.0f),
- new Vector3(0.0f, 1.0f, 0.0f),
- };
- /// <summary>Edit Menu priority 1</summary>
- public const int editMenuPriority1 = 320;
- /// <summary>Edit Menu priority 2</summary>
- public const int editMenuPriority2 = 331;
- /// <summary>Edit Menu priority 3</summary>
- public const int editMenuPriority3 = 342;
- /// <summary>Edit Menu priority 4</summary>
- public const int editMenuPriority4 = 353;
- /// <summary>Asset Create Menu priority 1</summary>
- public const int assetCreateMenuPriority1 = 230;
- /// <summary>Asset Create Menu priority 2</summary>
- public const int assetCreateMenuPriority2 = 241;
- /// <summary>Asset Create Menu priority 3</summary>
- public const int assetCreateMenuPriority3 = 300;
- /// <summary>Game Object Menu priority</summary>
- public const int gameObjectMenuPriority = 10;
- static Cubemap m_BlackCubeTexture;
- /// <summary>
- /// Black cubemap texture.
- /// </summary>
- public static Cubemap blackCubeTexture
- {
- get
- {
- if (m_BlackCubeTexture == null)
- {
- m_BlackCubeTexture = new Cubemap(1, TextureFormat.ARGB32, false);
- for (int i = 0; i < 6; ++i)
- m_BlackCubeTexture.SetPixel((CubemapFace)i, 0, 0, Color.black);
- m_BlackCubeTexture.Apply();
- }
- return m_BlackCubeTexture;
- }
- }
- static Cubemap m_MagentaCubeTexture;
- /// <summary>
- /// Magenta cubemap texture.
- /// </summary>
- public static Cubemap magentaCubeTexture
- {
- get
- {
- if (m_MagentaCubeTexture == null)
- {
- m_MagentaCubeTexture = new Cubemap(1, TextureFormat.ARGB32, false);
- for (int i = 0; i < 6; ++i)
- m_MagentaCubeTexture.SetPixel((CubemapFace)i, 0, 0, Color.magenta);
- m_MagentaCubeTexture.Apply();
- }
- return m_MagentaCubeTexture;
- }
- }
- static CubemapArray m_MagentaCubeTextureArray;
- /// <summary>
- /// Black cubemap array texture.
- /// </summary>
- public static CubemapArray magentaCubeTextureArray
- {
- get
- {
- if (m_MagentaCubeTextureArray == null)
- {
- m_MagentaCubeTextureArray = new CubemapArray(1, 1, TextureFormat.RGBAFloat, false);
- for (int i = 0; i < 6; ++i)
- {
- Color[] colors = { Color.magenta };
- m_MagentaCubeTextureArray.SetPixels(colors, (CubemapFace)i, 0);
- }
- m_MagentaCubeTextureArray.Apply();
- }
- return m_MagentaCubeTextureArray;
- }
- }
- static Cubemap m_WhiteCubeTexture;
- /// <summary>
- /// White cubemap texture.
- /// </summary>
- public static Cubemap whiteCubeTexture
- {
- get
- {
- if (m_WhiteCubeTexture == null)
- {
- m_WhiteCubeTexture = new Cubemap(1, TextureFormat.ARGB32, false);
- for (int i = 0; i < 6; ++i)
- m_WhiteCubeTexture.SetPixel((CubemapFace)i, 0, 0, Color.white);
- m_WhiteCubeTexture.Apply();
- }
- return m_WhiteCubeTexture;
- }
- }
- static RenderTexture m_EmptyUAV;
- /// <summary>
- /// Empty 1x1 texture usable as a dummy UAV.
- /// </summary>
- public static RenderTexture emptyUAV
- {
- get
- {
- if (m_EmptyUAV == null)
- {
- m_EmptyUAV = new RenderTexture(1, 1, 0);
- m_EmptyUAV.enableRandomWrite = true;
- m_EmptyUAV.Create();
- }
- return m_EmptyUAV;
- }
- }
- static Texture3D m_BlackVolumeTexture;
- /// <summary>
- /// Black 3D texture.
- /// </summary>
- public static Texture3D blackVolumeTexture
- {
- get
- {
- if (m_BlackVolumeTexture == null)
- {
- Color[] colors = { Color.black };
- m_BlackVolumeTexture = new Texture3D(1, 1, 1, TextureFormat.ARGB32, false);
- m_BlackVolumeTexture.SetPixels(colors, 0);
- m_BlackVolumeTexture.Apply();
- }
- return m_BlackVolumeTexture;
- }
- }
- /// <summary>
- /// Clear the currently bound render texture.
- /// </summary>
- /// <param name="cmd">CommandBuffer used for rendering commands.</param>
- /// <param name="clearFlag">Specify how the render texture should be cleared.</param>
- /// <param name="clearColor">Specify with which color the render texture should be cleared.</param>
- public static void ClearRenderTarget(CommandBuffer cmd, ClearFlag clearFlag, Color clearColor)
- {
- if (clearFlag != ClearFlag.None)
- cmd.ClearRenderTarget((clearFlag & ClearFlag.Depth) != 0, (clearFlag & ClearFlag.Color) != 0, clearColor);
- }
- // We use -1 as a default value because when doing SPI for XR, it will bind the full texture array by default (and has no effect on 2D textures)
- // Unfortunately, for cubemaps, passing -1 does not work for faces other than the first one, so we fall back to 0 in this case.
- private static int FixupDepthSlice(int depthSlice, RTHandle buffer)
- {
- if (depthSlice == -1 && buffer.rt.dimension == TextureDimension.Cube)
- depthSlice = 0;
- return depthSlice;
- }
- private static int FixupDepthSlice(int depthSlice, CubemapFace cubemapFace)
- {
- if (depthSlice == -1 && cubemapFace != CubemapFace.Unknown)
- depthSlice = 0;
- return depthSlice;
- }
- /// <summary>
- /// Set the current render texture.
- /// </summary>
- /// <param name="cmd">CommandBuffer used for rendering commands.</param>
- /// <param name="buffer">RenderTargetIdentifier of the render texture.</param>
- /// <param name="clearFlag">If not set to ClearFlag.None, specifies how to clear the render target after setup.</param>
- /// <param name="clearColor">If applicable, color with which to clear the render texture after setup.</param>
- /// <param name="miplevel">Mip level that should be bound as a render texture if applicable.</param>
- /// <param name="cubemapFace">Cubemap face that should be bound as a render texture if applicable.</param>
- /// <param name="depthSlice">Depth slice that should be bound as a render texture if applicable.</param>
- public static void SetRenderTarget(CommandBuffer cmd, RenderTargetIdentifier buffer, ClearFlag clearFlag, Color clearColor, int miplevel = 0, CubemapFace cubemapFace = CubemapFace.Unknown, int depthSlice = -1)
- {
- depthSlice = FixupDepthSlice(depthSlice, cubemapFace);
- cmd.SetRenderTarget(buffer, miplevel, cubemapFace, depthSlice);
- ClearRenderTarget(cmd, clearFlag, clearColor);
- }
- /// <summary>
- /// Set the current render texture.
- /// </summary>
- /// <param name="cmd">CommandBuffer used for rendering commands.</param>
- /// <param name="buffer">RenderTargetIdentifier of the render texture.</param>
- /// <param name="clearFlag">If not set to ClearFlag.None, specifies how to clear the render target after setup.</param>
- /// <param name="miplevel">Mip level that should be bound as a render texture if applicable.</param>
- /// <param name="cubemapFace">Cubemap face that should be bound as a render texture if applicable.</param>
- /// <param name="depthSlice">Depth slice that should be bound as a render texture if applicable.</param>
- public static void SetRenderTarget(CommandBuffer cmd, RenderTargetIdentifier buffer, ClearFlag clearFlag = ClearFlag.None, int miplevel = 0, CubemapFace cubemapFace = CubemapFace.Unknown, int depthSlice = -1)
- {
- SetRenderTarget(cmd, buffer, clearFlag, Color.clear, miplevel, cubemapFace, depthSlice);
- }
- /// <summary>
- /// Set the current render texture.
- /// </summary>
- /// <param name="cmd">CommandBuffer used for rendering commands.</param>
- /// <param name="colorBuffer">RenderTargetIdentifier of the color render texture.</param>
- /// <param name="depthBuffer">RenderTargetIdentifier of the depth render texture.</param>
- /// <param name="miplevel">Mip level that should be bound as a render texture if applicable.</param>
- /// <param name="cubemapFace">Cubemap face that should be bound as a render texture if applicable.</param>
- /// <param name="depthSlice">Depth slice that should be bound as a render texture if applicable.</param>
- public static void SetRenderTarget(CommandBuffer cmd, RenderTargetIdentifier colorBuffer, RenderTargetIdentifier depthBuffer, int miplevel = 0, CubemapFace cubemapFace = CubemapFace.Unknown, int depthSlice = -1)
- {
- SetRenderTarget(cmd, colorBuffer, depthBuffer, ClearFlag.None, Color.clear, miplevel, cubemapFace, depthSlice);
- }
- /// <summary>
- /// Set the current render texture.
- /// </summary>
- /// <param name="cmd">CommandBuffer used for rendering commands.</param>
- /// <param name="colorBuffer">RenderTargetIdentifier of the color render texture.</param>
- /// <param name="depthBuffer">RenderTargetIdentifier of the depth render texture.</param>
- /// <param name="clearFlag">If not set to ClearFlag.None, specifies how to clear the render target after setup.</param>
- /// <param name="miplevel">Mip level that should be bound as a render texture if applicable.</param>
- /// <param name="cubemapFace">Cubemap face that should be bound as a render texture if applicable.</param>
- /// <param name="depthSlice">Depth slice that should be bound as a render texture if applicable.</param>
- public static void SetRenderTarget(CommandBuffer cmd, RenderTargetIdentifier colorBuffer, RenderTargetIdentifier depthBuffer, ClearFlag clearFlag, int miplevel = 0, CubemapFace cubemapFace = CubemapFace.Unknown, int depthSlice = -1)
- {
- SetRenderTarget(cmd, colorBuffer, depthBuffer, clearFlag, Color.clear, miplevel, cubemapFace, depthSlice);
- }
- /// <summary>
- /// Set the current render texture.
- /// </summary>
- /// <param name="cmd">CommandBuffer used for rendering commands.</param>
- /// <param name="colorBuffer">RenderTargetIdentifier of the color render texture.</param>
- /// <param name="depthBuffer">RenderTargetIdentifier of the depth render texture.</param>
- /// <param name="clearFlag">If not set to ClearFlag.None, specifies how to clear the render target after setup.</param>
- /// <param name="clearColor">If applicable, color with which to clear the render texture after setup.</param>
- /// <param name="miplevel">Mip level that should be bound as a render texture if applicable.</param>
- /// <param name="cubemapFace">Cubemap face that should be bound as a render texture if applicable.</param>
- /// <param name="depthSlice">Depth slice that should be bound as a render texture if applicable.</param>
- public static void SetRenderTarget(CommandBuffer cmd, RenderTargetIdentifier colorBuffer, RenderTargetIdentifier depthBuffer, ClearFlag clearFlag, Color clearColor, int miplevel = 0, CubemapFace cubemapFace = CubemapFace.Unknown, int depthSlice = -1)
- {
- depthSlice = FixupDepthSlice(depthSlice, cubemapFace);
- cmd.SetRenderTarget(colorBuffer, depthBuffer, miplevel, cubemapFace, depthSlice);
- ClearRenderTarget(cmd, clearFlag, clearColor);
- }
- /// <summary>
- /// Set the current multiple render texture.
- /// </summary>
- /// <param name="cmd">CommandBuffer used for rendering commands.</param>
- /// <param name="colorBuffers">RenderTargetIdentifier array of the color render textures.</param>
- /// <param name="depthBuffer">RenderTargetIdentifier of the depth render texture.</param>
- public static void SetRenderTarget(CommandBuffer cmd, RenderTargetIdentifier[] colorBuffers, RenderTargetIdentifier depthBuffer)
- {
- SetRenderTarget(cmd, colorBuffers, depthBuffer, ClearFlag.None, Color.clear);
- }
- /// <summary>
- /// Set the current multiple render texture.
- /// </summary>
- /// <param name="cmd">CommandBuffer used for rendering commands.</param>
- /// <param name="colorBuffers">RenderTargetIdentifier array of the color render textures.</param>
- /// <param name="depthBuffer">RenderTargetIdentifier of the depth render texture.</param>
- /// <param name="clearFlag">If not set to ClearFlag.None, specifies how to clear the render target after setup.</param>
- public static void SetRenderTarget(CommandBuffer cmd, RenderTargetIdentifier[] colorBuffers, RenderTargetIdentifier depthBuffer, ClearFlag clearFlag = ClearFlag.None)
- {
- SetRenderTarget(cmd, colorBuffers, depthBuffer, clearFlag, Color.clear);
- }
- /// <summary>
- /// Set the current multiple render texture.
- /// </summary>
- /// <param name="cmd">CommandBuffer used for rendering commands.</param>
- /// <param name="colorBuffers">RenderTargetIdentifier array of the color render textures.</param>
- /// <param name="depthBuffer">RenderTargetIdentifier of the depth render texture.</param>
- /// <param name="clearFlag">If not set to ClearFlag.None, specifies how to clear the render target after setup.</param>
- /// <param name="clearColor">If applicable, color with which to clear the render texture after setup.</param>
- public static void SetRenderTarget(CommandBuffer cmd, RenderTargetIdentifier[] colorBuffers, RenderTargetIdentifier depthBuffer, ClearFlag clearFlag, Color clearColor)
- {
- cmd.SetRenderTarget(colorBuffers, depthBuffer, 0, CubemapFace.Unknown, -1);
- ClearRenderTarget(cmd, clearFlag, clearColor);
- }
- // Explicit load and store actions
- /// <summary>
- /// Set the current render texture.
- /// </summary>
- /// <param name="cmd">CommandBuffer used for rendering commands.</param>
- /// <param name="buffer">Color buffer RenderTargetIdentifier.</param>
- /// <param name="loadAction">Load action.</param>
- /// <param name="storeAction">Store action.</param>
- /// <param name="clearFlag">If not set to ClearFlag.None, specifies how to clear the render target after setup.</param>
- /// <param name="clearColor">If applicable, color with which to clear the render texture after setup.</param>
- public static void SetRenderTarget(CommandBuffer cmd, RenderTargetIdentifier buffer, RenderBufferLoadAction loadAction, RenderBufferStoreAction storeAction, ClearFlag clearFlag, Color clearColor)
- {
- cmd.SetRenderTarget(buffer, loadAction, storeAction);
- ClearRenderTarget(cmd, clearFlag, clearColor);
- }
- /// <summary>
- /// Set the current render texture.
- /// </summary>
- /// <param name="cmd">CommandBuffer used for rendering commands.</param>
- /// <param name="buffer">Color buffer RenderTargetIdentifier.</param>
- /// <param name="loadAction">Load action.</param>
- /// <param name="storeAction">Store action.</param>
- /// <param name="clearFlag">If not set to ClearFlag.None, specifies how to clear the render target after setup.</param>
- public static void SetRenderTarget(CommandBuffer cmd, RenderTargetIdentifier buffer, RenderBufferLoadAction loadAction, RenderBufferStoreAction storeAction, ClearFlag clearFlag)
- {
- SetRenderTarget(cmd, buffer, loadAction, storeAction, clearFlag, Color.clear);
- }
- /// <summary>
- /// Set the current render texture.
- /// </summary>
- /// <param name="cmd">CommandBuffer used for rendering commands.</param>
- /// <param name="colorBuffer">Color buffer RenderTargetIdentifier.</param>
- /// <param name="colorLoadAction">Color buffer load action.</param>
- /// <param name="colorStoreAction">Color buffer store action.</param>
- /// <param name="depthBuffer">Depth buffer RenderTargetIdentifier.</param>
- /// <param name="depthLoadAction">Depth buffer load action.</param>
- /// <param name="depthStoreAction">Depth buffer store action.</param>
- /// <param name="clearFlag">If not set to ClearFlag.None, specifies how to clear the render target after setup.</param>
- /// <param name="clearColor">If applicable, color with which to clear the render texture after setup.</param>
- public static void SetRenderTarget(CommandBuffer cmd, RenderTargetIdentifier colorBuffer, RenderBufferLoadAction colorLoadAction, RenderBufferStoreAction colorStoreAction,
- RenderTargetIdentifier depthBuffer, RenderBufferLoadAction depthLoadAction, RenderBufferStoreAction depthStoreAction,
- ClearFlag clearFlag, Color clearColor)
- {
- cmd.SetRenderTarget(colorBuffer, colorLoadAction, colorStoreAction, depthBuffer, depthLoadAction, depthStoreAction);
- ClearRenderTarget(cmd, clearFlag, clearColor);
- }
- /// <summary>
- /// Set the current render texture.
- /// </summary>
- /// <param name="cmd">CommandBuffer used for rendering commands.</param>
- /// <param name="colorBuffer">Color buffer RenderTargetIdentifier.</param>
- /// <param name="colorLoadAction">Color buffer load action.</param>
- /// <param name="colorStoreAction">Color buffer store action.</param>
- /// <param name="depthBuffer">Depth buffer RenderTargetIdentifier.</param>
- /// <param name="depthLoadAction">Depth buffer load action.</param>
- /// <param name="depthStoreAction">Depth buffer store action.</param>
- /// <param name="clearFlag">If not set to ClearFlag.None, specifies how to clear the render target after setup.</param>
- public static void SetRenderTarget(CommandBuffer cmd, RenderTargetIdentifier colorBuffer, RenderBufferLoadAction colorLoadAction, RenderBufferStoreAction colorStoreAction,
- RenderTargetIdentifier depthBuffer, RenderBufferLoadAction depthLoadAction, RenderBufferStoreAction depthStoreAction,
- ClearFlag clearFlag)
- {
- SetRenderTarget(cmd, colorBuffer, colorLoadAction, colorStoreAction, depthBuffer, depthLoadAction, depthStoreAction, clearFlag, Color.clear);
- }
- private static void SetViewportAndClear(CommandBuffer cmd, RTHandle buffer, ClearFlag clearFlag, Color clearColor)
- {
- // Clearing a partial viewport currently does not go through the hardware clear.
- // Instead it goes through a quad rendered with a specific shader.
- // When enabling wireframe mode in the scene view, unfortunately it overrides this shader thus breaking every clears.
- // That's why in the editor we don't set the viewport before clearing (it's set to full screen by the previous SetRenderTarget) but AFTER so that we benefit from un-bugged hardware clear.
- // We consider that the small loss in performance is acceptable in the editor.
- // A refactor of wireframe is needed before we can fix this properly (with not doing anything!)
- #if !UNITY_EDITOR
- SetViewport(cmd, buffer);
- #endif
- CoreUtils.ClearRenderTarget(cmd, clearFlag, clearColor);
- #if UNITY_EDITOR
- SetViewport(cmd, buffer);
- #endif
- }
- // This set of RenderTarget management methods is supposed to be used when rendering RTHandle render texture.
- // This will automatically set the viewport based on the RTHandle System reference size and the RTHandle scaling info.
- /// <summary>
- /// Setup the current render texture using an RTHandle
- /// </summary>
- /// <param name="cmd">CommandBuffer used for rendering commands</param>
- /// <param name="buffer">Color buffer RTHandle</param>
- /// <param name="clearFlag">If not set to ClearFlag.None, specifies how to clear the render target after setup.</param>
- /// <param name="clearColor">If applicable, color with which to clear the render texture after setup.</param>
- /// <param name="miplevel">Mip level that should be bound as a render texture if applicable.</param>
- /// <param name="cubemapFace">Cubemap face that should be bound as a render texture if applicable.</param>
- /// <param name="depthSlice">Depth slice that should be bound as a render texture if applicable.</param>
- public static void SetRenderTarget(CommandBuffer cmd, RTHandle buffer, ClearFlag clearFlag, Color clearColor, int miplevel = 0, CubemapFace cubemapFace = CubemapFace.Unknown, int depthSlice = -1)
- {
- depthSlice = FixupDepthSlice(depthSlice, buffer);
- cmd.SetRenderTarget(buffer, miplevel, cubemapFace, depthSlice);
- SetViewportAndClear(cmd, buffer, clearFlag, clearColor);
- }
- /// <summary>
- /// Setup the current render texture using an RTHandle
- /// </summary>
- /// <param name="cmd">CommandBuffer used for rendering commands</param>
- /// <param name="buffer">Color buffer RTHandle</param>
- /// <param name="clearFlag">If not set to ClearFlag.None, specifies how to clear the render target after setup.</param>
- /// <param name="miplevel">Mip level that should be bound as a render texture if applicable.</param>
- /// <param name="cubemapFace">Cubemap face that should be bound as a render texture if applicable.</param>
- /// <param name="depthSlice">Depth slice that should be bound as a render texture if applicable.</param>
- public static void SetRenderTarget(CommandBuffer cmd, RTHandle buffer, ClearFlag clearFlag = ClearFlag.None, int miplevel = 0, CubemapFace cubemapFace = CubemapFace.Unknown, int depthSlice = -1)
- => SetRenderTarget(cmd, buffer, clearFlag, Color.clear, miplevel, cubemapFace, depthSlice);
- /// <summary>
- /// Setup the current render texture using an RTHandle
- /// </summary>
- /// <param name="cmd">CommandBuffer used for rendering commands</param>
- /// <param name="colorBuffer">Color buffer RTHandle</param>
- /// <param name="depthBuffer">Depth buffer RTHandle</param>
- /// <param name="miplevel">Mip level that should be bound as a render texture if applicable.</param>
- /// <param name="cubemapFace">Cubemap face that should be bound as a render texture if applicable.</param>
- /// <param name="depthSlice">Depth slice that should be bound as a render texture if applicable.</param>
- public static void SetRenderTarget(CommandBuffer cmd, RTHandle colorBuffer, RTHandle depthBuffer, int miplevel = 0, CubemapFace cubemapFace = CubemapFace.Unknown, int depthSlice = -1)
- {
- int cw = colorBuffer.rt.width;
- int ch = colorBuffer.rt.height;
- int dw = depthBuffer.rt.width;
- int dh = depthBuffer.rt.height;
- Debug.Assert(cw == dw && ch == dh);
- SetRenderTarget(cmd, colorBuffer, depthBuffer, ClearFlag.None, Color.clear, miplevel, cubemapFace, depthSlice);
- }
- /// <summary>
- /// Setup the current render texture using an RTHandle
- /// </summary>
- /// <param name="cmd">CommandBuffer used for rendering commands</param>
- /// <param name="colorBuffer">Color buffer RTHandle</param>
- /// <param name="depthBuffer">Depth buffer RTHandle</param>
- /// <param name="clearFlag">If not set to ClearFlag.None, specifies how to clear the render target after setup.</param>
- /// <param name="miplevel">Mip level that should be bound as a render texture if applicable.</param>
- /// <param name="cubemapFace">Cubemap face that should be bound as a render texture if applicable.</param>
- /// <param name="depthSlice">Depth slice that should be bound as a render texture if applicable.</param>
- public static void SetRenderTarget(CommandBuffer cmd, RTHandle colorBuffer, RTHandle depthBuffer, ClearFlag clearFlag, int miplevel = 0, CubemapFace cubemapFace = CubemapFace.Unknown, int depthSlice = -1)
- {
- int cw = colorBuffer.rt.width;
- int ch = colorBuffer.rt.height;
- int dw = depthBuffer.rt.width;
- int dh = depthBuffer.rt.height;
- Debug.Assert(cw == dw && ch == dh);
- SetRenderTarget(cmd, colorBuffer, depthBuffer, clearFlag, Color.clear, miplevel, cubemapFace, depthSlice);
- }
- /// <summary>
- /// Setup the current render texture using an RTHandle
- /// </summary>
- /// <param name="cmd">CommandBuffer used for rendering commands</param>
- /// <param name="colorBuffer">Color buffer RTHandle</param>
- /// <param name="depthBuffer">Depth buffer RTHandle</param>
- /// <param name="clearFlag">If not set to ClearFlag.None, specifies how to clear the render target after setup.</param>
- /// <param name="clearColor">If applicable, color with which to clear the render texture after setup.</param>
- /// <param name="miplevel">Mip level that should be bound as a render texture if applicable.</param>
- /// <param name="cubemapFace">Cubemap face that should be bound as a render texture if applicable.</param>
- /// <param name="depthSlice">Depth slice that should be bound as a render texture if applicable.</param>
- public static void SetRenderTarget(CommandBuffer cmd, RTHandle colorBuffer, RTHandle depthBuffer, ClearFlag clearFlag, Color clearColor, int miplevel = 0, CubemapFace cubemapFace = CubemapFace.Unknown, int depthSlice = -1)
- {
- int cw = colorBuffer.rt.width;
- int ch = colorBuffer.rt.height;
- int dw = depthBuffer.rt.width;
- int dh = depthBuffer.rt.height;
- Debug.Assert(cw == dw && ch == dh);
- CoreUtils.SetRenderTarget(cmd, colorBuffer.rt, depthBuffer.rt, miplevel, cubemapFace, depthSlice);
- SetViewportAndClear(cmd, colorBuffer, clearFlag, clearColor);
- }
- /// <summary>
- /// Set the current multiple render texture.
- /// </summary>
- /// <param name="cmd">CommandBuffer used for rendering commands.</param>
- /// <param name="colorBuffers">RenderTargetIdentifier array of the color render textures.</param>
- /// <param name="depthBuffer">Depth Buffer RTHandle.</param>
- public static void SetRenderTarget(CommandBuffer cmd, RenderTargetIdentifier[] colorBuffers, RTHandle depthBuffer)
- {
- CoreUtils.SetRenderTarget(cmd, colorBuffers, depthBuffer.rt, ClearFlag.None, Color.clear);
- SetViewport(cmd, depthBuffer);
- }
- /// <summary>
- /// Set the current multiple render texture.
- /// </summary>
- /// <param name="cmd">CommandBuffer used for rendering commands.</param>
- /// <param name="colorBuffers">RenderTargetIdentifier array of the color render textures.</param>
- /// <param name="depthBuffer">Depth Buffer RTHandle.</param>
- /// <param name="clearFlag">If not set to ClearFlag.None, specifies how to clear the render target after setup.</param>
- public static void SetRenderTarget(CommandBuffer cmd, RenderTargetIdentifier[] colorBuffers, RTHandle depthBuffer, ClearFlag clearFlag = ClearFlag.None)
- {
- CoreUtils.SetRenderTarget(cmd, colorBuffers, depthBuffer.rt); // Don't clear here, viewport needs to be set before we do.
- SetViewportAndClear(cmd, depthBuffer, clearFlag, Color.clear);
- }
- /// <summary>
- /// Set the current multiple render texture.
- /// </summary>
- /// <param name="cmd">CommandBuffer used for rendering commands.</param>
- /// <param name="colorBuffers">RenderTargetIdentifier array of the color render textures.</param>
- /// <param name="depthBuffer">Depth Buffer RTHandle.</param>
- /// <param name="clearFlag">If not set to ClearFlag.None, specifies how to clear the render target after setup.</param>
- /// <param name="clearColor">If applicable, color with which to clear the render texture after setup.</param>
- public static void SetRenderTarget(CommandBuffer cmd, RenderTargetIdentifier[] colorBuffers, RTHandle depthBuffer, ClearFlag clearFlag, Color clearColor)
- {
- cmd.SetRenderTarget(colorBuffers, depthBuffer, 0, CubemapFace.Unknown, -1);
- SetViewportAndClear(cmd, depthBuffer, clearFlag, clearColor);
- }
- // Scaling viewport is done for auto-scaling render targets.
- // In the context of SRP, every auto-scaled RT is scaled against the maximum RTHandles reference size (that can only grow).
- // When we render using a camera whose viewport is smaller than the RTHandles reference size (and thus smaller than the RT actual size), we need to set it explicitly (otherwise, native code will set the viewport at the size of the RT)
- // For auto-scaled RTs (like for example a half-resolution RT), we need to scale this viewport accordingly.
- // For non scaled RTs we just do nothing, the native code will set the viewport at the size of the RT anyway.
- /// <summary>
- /// Setup the viewport to the size of the provided RTHandle.
- /// </summary>
- /// <param name="cmd">CommandBuffer used for rendering commands.</param>
- /// <param name="target">RTHandle from which to compute the proper viewport.</param>
- public static void SetViewport(CommandBuffer cmd, RTHandle target)
- {
- if (target.useScaling)
- {
- Vector2Int scaledViewportSize = target.GetScaledSize(target.rtHandleProperties.currentViewportSize);
- cmd.SetViewport(new Rect(0.0f, 0.0f, scaledViewportSize.x, scaledViewportSize.y));
- }
- }
- /// <summary>
- /// Generate a name based on render texture parameters.
- /// </summary>
- /// <param name="width">With of the texture.</param>
- /// <param name="height">Height of the texture.</param>
- /// <param name="depth">Depth of the texture.</param>
- /// <param name="format">Format of the render texture.</param>
- /// <param name="name">Base name of the texture.</param>
- /// <param name="mips">True if the texture has mip maps.</param>
- /// <param name="enableMSAA">True if the texture is multisampled.</param>
- /// <param name="msaaSamples">Number of MSAA samples.</param>
- /// <returns>Generated names bassed on the provided parameters.</returns>
- public static string GetRenderTargetAutoName(int width, int height, int depth, RenderTextureFormat format, string name, bool mips = false, bool enableMSAA = false, MSAASamples msaaSamples = MSAASamples.None)
- => GetRenderTargetAutoName(width, height, depth, format.ToString(), name, mips, enableMSAA, msaaSamples);
-
- /// <summary>
- /// Generate a name based on render texture parameters.
- /// </summary>
- /// <param name="width">With of the texture.</param>
- /// <param name="height">Height of the texture.</param>
- /// <param name="depth">Depth of the texture.</param>
- /// <param name="format">Graphics format of the render texture.</param>
- /// <param name="name">Base name of the texture.</param>
- /// <param name="mips">True if the texture has mip maps.</param>
- /// <param name="enableMSAA">True if the texture is multisampled.</param>
- /// <param name="msaaSamples">Number of MSAA samples.</param>
- /// <returns>Generated names bassed on the provided parameters.</returns>
- public static string GetRenderTargetAutoName(int width, int height, int depth, GraphicsFormat format, string name, bool mips = false, bool enableMSAA = false, MSAASamples msaaSamples = MSAASamples.None)
- => GetRenderTargetAutoName(width, height, depth, format.ToString(), name, mips, enableMSAA, msaaSamples);
- static string GetRenderTargetAutoName(int width, int height, int depth, string format, string name, bool mips = false, bool enableMSAA = false, MSAASamples msaaSamples = MSAASamples.None)
- {
- string result = string.Format("{0}_{1}x{2}", name, width, height);
- if (depth > 1)
- result = string.Format("{0}x{1}", result, depth);
- if (mips)
- result = string.Format("{0}_{1}", result, "Mips");
- result = string.Format("{0}_{1}", result, format);
- if (enableMSAA)
- result = string.Format("{0}_{1}", result, msaaSamples.ToString());
- return result;
- }
- /// <summary>
- /// Generate a name based on texture parameters.
- /// </summary>
- /// <param name="width">With of the texture.</param>
- /// <param name="height">Height of the texture.</param>
- /// <param name="format">Format of the texture.</param>
- /// <param name="dim">Dimension of the texture.</param>
- /// <param name="name">Base name of the texture.</param>
- /// <param name="mips">True if the texture has mip maps.</param>
- /// <param name="depth">Depth of the texture.</param>
- /// <returns>Generated names based on the provided parameters.</returns>
- public static string GetTextureAutoName(int width, int height, TextureFormat format, TextureDimension dim = TextureDimension.None, string name = "", bool mips = false, int depth = 0)
- => GetTextureAutoName(width, height, format.ToString(), dim, name, mips, depth);
- /// <summary>
- /// Generate a name based on texture parameters.
- /// </summary>
- /// <param name="width">With of the texture.</param>
- /// <param name="height">Height of the texture.</param>
- /// <param name="format">Graphics format of the texture.</param>
- /// <param name="dim">Dimension of the texture.</param>
- /// <param name="name">Base name of the texture.</param>
- /// <param name="mips">True if the texture has mip maps.</param>
- /// <param name="depth">Depth of the texture.</param>
- /// <returns>Generated names based on the provided parameters.</returns>
- public static string GetTextureAutoName(int width, int height, GraphicsFormat format, TextureDimension dim = TextureDimension.None, string name = "", bool mips = false, int depth = 0)
- => GetTextureAutoName(width, height, format.ToString(), dim, name, mips, depth);
- static string GetTextureAutoName(int width, int height, string format, TextureDimension dim = TextureDimension.None, string name = "", bool mips = false, int depth = 0)
- {
- string temp;
- if (depth == 0)
- temp = string.Format("{0}x{1}{2}_{3}", width, height, mips ? "_Mips" : "", format);
- else
- temp = string.Format("{0}x{1}x{2}{3}_{4}", width, height, depth, mips ? "_Mips" : "", format);
- temp = String.Format("{0}_{1}_{2}", name == "" ? "Texture" : name, (dim == TextureDimension.None) ? "" : dim.ToString(), temp);
- return temp;
- }
- /// <summary>
- /// Clear a cubemap render texture.
- /// </summary>
- /// <param name="cmd">CommandBuffer used for rendering commands.</param>
- /// <param name="renderTexture">Cubemap render texture that needs to be cleared.</param>
- /// <param name="clearColor">Color used for clearing.</param>
- /// <param name="clearMips">Set to true to clear the mip maps of the render texture.</param>
- public static void ClearCubemap(CommandBuffer cmd, RenderTexture renderTexture, Color clearColor, bool clearMips = false)
- {
- int mipCount = 1;
- if (renderTexture.useMipMap && clearMips)
- {
- mipCount = (int)Mathf.Log((float)renderTexture.width, 2.0f) + 1;
- }
- for (int i = 0; i < 6; ++i)
- {
- for (int mip = 0; mip < mipCount; ++mip)
- {
- SetRenderTarget(cmd, new RenderTargetIdentifier(renderTexture), ClearFlag.Color, clearColor, mip, (CubemapFace)i);
- }
- }
- }
- /// <summary>
- /// Draws a full screen triangle.
- /// </summary>
- /// <param name="commandBuffer">CommandBuffer used for rendering commands.</param>
- /// <param name="material">Material used on the full screen triangle.</param>
- /// <param name="properties">Optional material property block for the provided material.</param>
- /// <param name="shaderPassId">Index of the material pass.</param>
- public static void DrawFullScreen(CommandBuffer commandBuffer, Material material,
- MaterialPropertyBlock properties = null, int shaderPassId = 0)
- {
- commandBuffer.DrawProcedural(Matrix4x4.identity, material, shaderPassId, MeshTopology.Triangles, 3, 1, properties);
- }
- /// <summary>
- /// Draws a full screen triangle.
- /// </summary>
- /// <param name="commandBuffer">CommandBuffer used for rendering commands.</param>
- /// <param name="material">Material used on the full screen triangle.</param>
- /// <param name="colorBuffer">RenderTargetIdentifier of the color buffer that needs to be set before drawing the full screen triangle.</param>
- /// <param name="properties">Optional material property block for the provided material.</param>
- /// <param name="shaderPassId">Index of the material pass.</param>
- public static void DrawFullScreen(CommandBuffer commandBuffer, Material material,
- RenderTargetIdentifier colorBuffer,
- MaterialPropertyBlock properties = null, int shaderPassId = 0)
- {
- commandBuffer.SetRenderTarget(colorBuffer);
- commandBuffer.DrawProcedural(Matrix4x4.identity, material, shaderPassId, MeshTopology.Triangles, 3, 1, properties);
- }
- /// <summary>
- /// Draws a full screen triangle.
- /// </summary>
- /// <param name="commandBuffer">CommandBuffer used for rendering commands.</param>
- /// <param name="material">Material used on the full screen triangle.</param>
- /// <param name="colorBuffer">RenderTargetIdentifier of the color buffer that needs to be set before drawing the full screen triangle.</param>
- /// <param name="depthStencilBuffer">RenderTargetIdentifier of the depth buffer that needs to be set before drawing the full screen triangle.</param>
- /// <param name="properties">Optional material property block for the provided material.</param>
- /// <param name="shaderPassId">Index of the material pass.</param>
- public static void DrawFullScreen(CommandBuffer commandBuffer, Material material,
- RenderTargetIdentifier colorBuffer, RenderTargetIdentifier depthStencilBuffer,
- MaterialPropertyBlock properties = null, int shaderPassId = 0)
- {
- commandBuffer.SetRenderTarget(colorBuffer, depthStencilBuffer, 0, CubemapFace.Unknown, -1);
- commandBuffer.DrawProcedural(Matrix4x4.identity, material, shaderPassId, MeshTopology.Triangles, 3, 1, properties);
- }
- /// <summary>
- /// Draws a full screen triangle.
- /// </summary>
- /// <param name="commandBuffer">CommandBuffer used for rendering commands.</param>
- /// <param name="material">Material used on the full screen triangle.</param>
- /// <param name="colorBuffers">RenderTargetIdentifier array of the color buffers that needs to be set before drawing the full screen triangle.</param>
- /// <param name="depthStencilBuffer">RenderTargetIdentifier of the depth buffer that needs to be set before drawing the full screen triangle.</param>
- /// <param name="properties">Optional material property block for the provided material.</param>
- /// <param name="shaderPassId">Index of the material pass.</param>
- public static void DrawFullScreen(CommandBuffer commandBuffer, Material material,
- RenderTargetIdentifier[] colorBuffers, RenderTargetIdentifier depthStencilBuffer,
- MaterialPropertyBlock properties = null, int shaderPassId = 0)
- {
- commandBuffer.SetRenderTarget(colorBuffers, depthStencilBuffer, 0, CubemapFace.Unknown, -1);
- commandBuffer.DrawProcedural(Matrix4x4.identity, material, shaderPassId, MeshTopology.Triangles, 3, 1, properties);
- }
- // Important: the first RenderTarget must be created with 0 depth bits!
- /// <summary>
- /// Draws a full screen triangle.
- /// </summary>
- /// <param name="commandBuffer">CommandBuffer used for rendering commands.</param>
- /// <param name="material">Material used on the full screen triangle.</param>
- /// <param name="colorBuffers">RenderTargetIdentifier array of the color buffers that needs to be set before drawing the full screen triangle.</param>
- /// <param name="properties">Optional material property block for the provided material.</param>
- /// <param name="shaderPassId">Index of the material pass.</param>
- public static void DrawFullScreen(CommandBuffer commandBuffer, Material material,
- RenderTargetIdentifier[] colorBuffers,
- MaterialPropertyBlock properties = null, int shaderPassId = 0)
- {
- // It is currently not possible to have MRT without also setting a depth target.
- // To work around this deficiency of the CommandBuffer.SetRenderTarget() API,
- // we pass the first color target as the depth target. If it has 0 depth bits,
- // no depth target ends up being bound.
- DrawFullScreen(commandBuffer, material, colorBuffers, colorBuffers[0], properties, shaderPassId);
- }
- // Color space utilities
- /// <summary>
- /// Converts the provided sRGB color to the current active color space.
- /// </summary>
- /// <param name="color">Input color.</param>
- /// <returns>Linear color if the active color space is ColorSpace.Linear, the original input otherwise.</returns>
- public static Color ConvertSRGBToActiveColorSpace(Color color)
- {
- return (QualitySettings.activeColorSpace == ColorSpace.Linear) ? color.linear : color;
- }
- /// <summary>
- /// Converts the provided linear color to the current active color space.
- /// </summary>
- /// <param name="color">Input color.</param>
- /// <returns>sRGB color if the active color space is ColorSpace.Gamma, the original input otherwise.</returns>
- public static Color ConvertLinearToActiveColorSpace(Color color)
- {
- return (QualitySettings.activeColorSpace == ColorSpace.Linear) ? color : color.gamma;
- }
- /// <summary>
- /// Creates a Material with the provided shader path.
- /// hideFlags will be set to HideFlags.HideAndDontSave.
- /// </summary>
- /// <param name="shaderPath">Path of the shader used for the material.</param>
- /// <returns>A new Material instance using the shader found at the provided path.</returns>
- public static Material CreateEngineMaterial(string shaderPath)
- {
- Shader shader = Shader.Find(shaderPath);
- if (shader == null)
- {
- Debug.LogError("Cannot create required material because shader " + shaderPath + " could not be found");
- return null;
- }
- var mat = new Material(shader)
- {
- hideFlags = HideFlags.HideAndDontSave
- };
- return mat;
- }
- /// <summary>
- /// Creates a Material with the provided shader.
- /// hideFlags will be set to HideFlags.HideAndDontSave.
- /// </summary>
- /// <param name="shader">Shader used for the material.</param>
- /// <returns>A new Material instance using the provided shader.</returns>
- public static Material CreateEngineMaterial(Shader shader)
- {
- if (shader == null)
- {
- Debug.LogError("Cannot create required material because shader is null");
- return null;
- }
- var mat = new Material(shader)
- {
- hideFlags = HideFlags.HideAndDontSave
- };
- return mat;
- }
- /// <summary>
- /// Bitfield flag test.
- /// </summary>
- /// <typeparam name="T">Type of the enum flag.</typeparam>
- /// <param name="mask">Bitfield to test the flag against.</param>
- /// <param name="flag">Flag to be tested against the provided mask.</param>
- /// <returns>True if the flag is present in the mask.</returns>
- public static bool HasFlag<T>(T mask, T flag) where T : IConvertible
- {
- return (mask.ToUInt32(null) & flag.ToUInt32(null)) != 0;
- }
- /// <summary>
- /// Swaps two values.
- /// </summary>
- /// <typeparam name="T">Type of the values</typeparam>
- /// <param name="a">First value.</param>
- /// <param name="b">Second value.</param>
- public static void Swap<T>(ref T a, ref T b)
- {
- var tmp = a;
- a = b;
- b = tmp;
- }
- /// <summary>
- /// Set a global keyword using a CommandBuffer
- /// </summary>
- /// <param name="cmd">CommandBuffer on which to set the global keyword.</param>
- /// <param name="keyword">Keyword to be set.</param>
- /// <param name="state">Value of the keyword to be set.</param>
- public static void SetKeyword(CommandBuffer cmd, string keyword, bool state)
- {
- if (state)
- cmd.EnableShaderKeyword(keyword);
- else
- cmd.DisableShaderKeyword(keyword);
- }
- // Caution: such a call should not be use interlaced with command buffer command, as it is immediate
- /// <summary>
- /// Set a keyword immediatly on a Material.
- /// </summary>
- /// <param name="material">Material on which to set the keyword.</param>
- /// <param name="keyword">Keyword to set on the material.</param>
- /// <param name="state">Value of the keyword to set on the material.</param>
- public static void SetKeyword(Material material, string keyword, bool state)
- {
- if (state)
- material.EnableKeyword(keyword);
- else
- material.DisableKeyword(keyword);
- }
- /// <summary>
- /// Destroys a UnityObject safely.
- /// </summary>
- /// <param name="obj">Object to be destroyed.</param>
- public static void Destroy(UnityObject obj)
- {
- if (obj != null)
- {
- #if UNITY_EDITOR
- if (Application.isPlaying)
- UnityObject.Destroy(obj);
- else
- UnityObject.DestroyImmediate(obj);
- #else
- UnityObject.Destroy(obj);
- #endif
- }
- }
- static IEnumerable<Type> m_AssemblyTypes;
- /// <summary>
- /// Returns all assembly types.
- /// </summary>
- /// <returns>The list of all assembly types of the current domain.</returns>
- public static IEnumerable<Type> GetAllAssemblyTypes()
- {
- if (m_AssemblyTypes == null)
- {
- m_AssemblyTypes = AppDomain.CurrentDomain.GetAssemblies()
- .SelectMany(t =>
- {
- // Ugly hack to handle mis-versioned dlls
- var innerTypes = new Type[0];
- try
- {
- innerTypes = t.GetTypes();
- }
- catch {}
- return innerTypes;
- });
- }
- return m_AssemblyTypes;
- }
- /// <summary>
- /// Returns a list of types that inherit from the provided type.
- /// </summary>
- /// <typeparam name="T">Parent Type</typeparam>
- /// <returns>A list of types that inherit from the provided type.</returns>
- public static IEnumerable<Type> GetAllTypesDerivedFrom<T>()
- {
- #if UNITY_EDITOR && UNITY_2019_2_OR_NEWER
- return UnityEditor.TypeCache.GetTypesDerivedFrom<T>();
- #else
- return GetAllAssemblyTypes().Where(t => t.IsSubclassOf(typeof(T)));
- #endif
- }
- /// <summary>
- /// Safely release a Compute Buffer.
- /// </summary>
- /// <param name="buffer">Compute Buffer that needs to be released.</param>
- public static void SafeRelease(ComputeBuffer buffer)
- {
- if (buffer != null)
- buffer.Release();
- }
- /// <summary>
- /// Creates a cube mesh.
- /// </summary>
- /// <param name="min">Minimum corner coordinates in local space.</param>
- /// <param name="max">Maximum corner coordinates in local space.</param>
- /// <returns>A new instance of a cube Mesh.</returns>
- public static Mesh CreateCubeMesh(Vector3 min, Vector3 max)
- {
- Mesh mesh = new Mesh();
- Vector3[] vertices = new Vector3[8];
- vertices[0] = new Vector3(min.x, min.y, min.z);
- vertices[1] = new Vector3(max.x, min.y, min.z);
- vertices[2] = new Vector3(max.x, max.y, min.z);
- vertices[3] = new Vector3(min.x, max.y, min.z);
- vertices[4] = new Vector3(min.x, min.y, max.z);
- vertices[5] = new Vector3(max.x, min.y, max.z);
- vertices[6] = new Vector3(max.x, max.y, max.z);
- vertices[7] = new Vector3(min.x, max.y, max.z);
- mesh.vertices = vertices;
- int[] triangles = new int[36];
- triangles[0] = 0; triangles[1] = 2; triangles[2] = 1;
- triangles[3] = 0; triangles[4] = 3; triangles[5] = 2;
- triangles[6] = 1; triangles[7] = 6; triangles[8] = 5;
- triangles[9] = 1; triangles[10] = 2; triangles[11] = 6;
- triangles[12] = 5; triangles[13] = 7; triangles[14] = 4;
- triangles[15] = 5; triangles[16] = 6; triangles[17] = 7;
- triangles[18] = 4; triangles[19] = 3; triangles[20] = 0;
- triangles[21] = 4; triangles[22] = 7; triangles[23] = 3;
- triangles[24] = 3; triangles[25] = 6; triangles[26] = 2;
- triangles[27] = 3; triangles[28] = 7; triangles[29] = 6;
- triangles[30] = 4; triangles[31] = 1; triangles[32] = 5;
- triangles[33] = 4; triangles[34] = 0; triangles[35] = 1;
- mesh.triangles = triangles;
- return mesh;
- }
- /// <summary>
- /// Returns true if "Post Processes" are enabled for the view associated with the given camera.
- /// </summary>
- /// <param name="camera">Input camera.</param>
- /// <returns>True if "Post Processes" are enabled for the view associated with the given camera.</returns>
- public static bool ArePostProcessesEnabled(Camera camera)
- {
- bool enabled = true;
- #if UNITY_EDITOR
- if (camera.cameraType == CameraType.SceneView)
- {
- enabled = false;
- // Determine whether the "Post Processes" checkbox is checked for the current view.
- for (int i = 0; i < UnityEditor.SceneView.sceneViews.Count; i++)
- {
- var sv = UnityEditor.SceneView.sceneViews[i] as UnityEditor.SceneView;
- // Post-processing is disabled in scene view if either showImageEffects is disabled or we are
- // rendering in wireframe mode.
- if (sv.camera == camera &&
- (sv.sceneViewState.showImageEffects && sv.cameraMode.drawMode != UnityEditor.DrawCameraMode.Wireframe))
- {
- enabled = true;
- break;
- }
- }
- }
- #endif
- return enabled;
- }
- /// <summary>
- /// Returns true if "Animated Materials" are enabled for the view associated with the given camera.
- /// </summary>
- /// <param name="camera">Input camera.</param>
- /// <returns>True if "Animated Materials" are enabled for the view associated with the given camera.</returns>
- public static bool AreAnimatedMaterialsEnabled(Camera camera)
- {
- bool animateMaterials = true;
- #if UNITY_EDITOR
- animateMaterials = Application.isPlaying; // For Game and VR views; Reflection views pass the parent camera
- if (camera.cameraType == CameraType.SceneView)
- {
- animateMaterials = false;
- // Determine whether the "Animated Materials" checkbox is checked for the current view.
- for (int i = 0; i < UnityEditor.SceneView.sceneViews.Count; i++) // Using a foreach on an ArrayList generates garbage ...
- {
- var sv = UnityEditor.SceneView.sceneViews[i] as UnityEditor.SceneView;
- if (sv.camera == camera && sv.sceneViewState.showMaterialUpdate)
- {
- animateMaterials = true;
- break;
- }
- }
- }
- else if (camera.cameraType == CameraType.Preview)
- {
- // Enable for previews so the shader graph main preview works with time parameters.
- animateMaterials = true;
- }
- else if (camera.cameraType == CameraType.Reflection)
- {
- // Reflection cameras should be handled outside this function.
- // Debug.Assert(false, "Unexpected View type.");
- }
- // IMHO, a better solution would be:
- // A window invokes a camera render. The camera knows which window called it, so it can query its properies
- // (such as animated materials). This camera provides the space-time position. It should also be able
- // to access the rendering settings somehow. Using this information, it is then able to construct the
- // primary view with information about camera-relative rendering, LOD, time, rendering passes/features
- // enabled, etc. We then render this view. It can have multiple sub-views (shadows, reflections).
- // They inherit all the properties of the primary view, but also have the ability to override them
- // (e.g. primary cam pos and time are retained, matrices are modified, SSS and tessellation are disabled).
- // These views can then have multiple sub-views (probably not practical for games),
- // which simply amounts to a recursive call, and then the story repeats itself.
- //
- // TLDR: we need to know the caller and its status/properties to make decisions.
- #endif
- return animateMaterials;
- }
- /// <summary>
- /// Returns true if "Scene Lighting" is enabled for the view associated with the given camera.
- /// </summary>
- /// <param name="camera">Input camera.</param>
- /// <returns>True if "Scene Lighting" is enabled for the view associated with the given camera.</returns>
- public static bool IsSceneLightingDisabled(Camera camera)
- {
- bool disabled = false;
- #if UNITY_EDITOR
- if (camera.cameraType == CameraType.SceneView)
- {
- // Determine whether the "No Scene Lighting" checkbox is checked for the current view.
- for (int i = 0; i < UnityEditor.SceneView.sceneViews.Count; i++)
- {
- var sv = UnityEditor.SceneView.sceneViews[i] as UnityEditor.SceneView;
- if (sv.camera == camera && !sv.sceneLighting)
- {
- disabled = true;
- break;
- }
- }
- }
- #endif
- return disabled;
- }
- #if UNITY_EDITOR
- static Func<List<UnityEditor.MaterialEditor>> materialEditors;
- static CoreUtils()
- {
- //quicker than standard reflection as it is compiled
- System.Reflection.FieldInfo field = typeof(UnityEditor.MaterialEditor).GetField("s_MaterialEditors", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Static);
- var fieldExpression = System.Linq.Expressions.Expression.Field(null, field);
- var lambda = System.Linq.Expressions.Expression.Lambda<Func<List<UnityEditor.MaterialEditor>>>(fieldExpression);
- materialEditors = lambda.Compile();
- }
- #endif
- /// <summary>
- /// Returns true if "Fog" is enabled for the view associated with the given camera.
- /// </summary>
- /// <param name="camera">Input camera.</param>
- /// <returns>True if "Fog" is enabled for the view associated with the given camera.</returns>
- public static bool IsSceneViewFogEnabled(Camera camera)
- {
- bool fogEnable = true;
- #if UNITY_EDITOR
- if (camera.cameraType == CameraType.SceneView)
- {
- fogEnable = false;
- // Determine whether the "Animated Materials" checkbox is checked for the current view.
- for (int i = 0; i < UnityEditor.SceneView.sceneViews.Count; i++)
- {
- var sv = UnityEditor.SceneView.sceneViews[i] as UnityEditor.SceneView;
- if (sv.camera == camera && sv.sceneViewState.showFog)
- {
- fogEnable = true;
- break;
- }
- }
- }
- #endif
- return fogEnable;
- }
- }
- }
|