版本:Unity 6 (6000.0)
语言:English
在 URP 中渲染通道中使用纹理
URP 中 blitting 的最佳实践

在 URP 中渲染通道之间传递纹理

您可以跨渲染通道传递纹理,例如,如果您需要在一个渲染通道中创建纹理并在稍后的渲染通道中读取它。

使用以下方法在渲染通道之间传递纹理

您也可以将纹理存储在渲染通道之外,例如作为 可脚本化渲染功能 中的 TextureHandle

如果您需要确保纹理在多个帧中可用,或者多个摄像机一个组件,用于创建场景中特定视点的图像。输出要么绘制到屏幕上,要么捕获为纹理。 更多信息
参见词汇表
可以访问它,请改为参考将纹理导入渲染图系统

将纹理添加到帧数据

您可以将纹理添加到帧数据中,以便您可以在稍后的渲染通道中获取纹理。

请按照以下步骤操作

  1. 创建一个继承自ContextItem 并包含纹理句柄字段的类。

    例如

    public class MyCustomData : ContextItem {
        public TextureHandle textureToTransfer;
    }
    
  2. 您必须在您的类中实现 Reset() 方法,以便在帧重置时重置纹理。

    例如

    public class MyCustomData : ContextItem {
        public TextureHandle textureToTransfer;
    
        public override void Reset()
        {
            textureToTransfer = TextureHandle.nullHandle;
        }
    }    
    
  3. 在您的 RecordRenderGraph 方法中,将您类的实例添加到帧数据。

    例如

    public override void RecordRenderGraph(RenderGraph renderGraph, ContextContainer frameContext)
    {
        using (var builder = renderGraph.AddRasterRenderPass<PassData>("Get frame data", out var passData))
        {
            UniversalResourceData resourceData = frameContext.Get<UniversalResourceData>();
            var customData = contextData.Create<MyCustomData>();
        }
    }
    
  4. 将纹理句柄设置为您的纹理。

    例如

    // Create texture properties that match the screen
    RenderTextureDescriptor textureProperties = new RenderTextureDescriptor(Screen.width, Screen.height, RenderTextureFormat.Default, 0);
    
    // Create the texture
    TextureHandle texture = UniversalRenderer.CreateRenderGraphTexture(renderGraph, textureProperties, "My texture", false);
    
    // Set the texture in the custom data instance
    customData.textureToTransfer = texture;
    

在稍后的渲染通道中,在您的 RecordRenderGraph 方法中,您可以获取您的自定义数据并获取您的纹理

例如

// Get the custom data
MyCustomData fetchedData = frameData.Get<MyCustomData>();

// Get the texture
TextureHandle customTexture = customData.textureToTransfer;

有关帧数据的更多信息,请参考使用帧数据

示例

以下示例添加了一个包含纹理的 CustomData 类。第一个渲染通道将纹理清除为黄色,第二个渲染通道获取黄色纹理并在其上绘制一个三角形。

using UnityEngine;
using UnityEngine.Rendering.Universal;
using UnityEngine.Rendering.RenderGraphModule;
using UnityEngine.Rendering;

public class AddOwnTextureToFrameData : ScriptableRendererFeature
{
    AddOwnTexturePass customPass1;
    DrawTrianglePass customPass2;

    public override void Create()
    {
        customPass1 = new AddOwnTexturePass();
        customPass2 = new DrawTrianglePass();

        customPass1.renderPassEvent = RenderPassEvent.AfterRenderingOpaques;
        customPass2.renderPassEvent = RenderPassEvent.AfterRenderingOpaques;
    }

    public override void AddRenderPasses(ScriptableRenderer renderer, ref RenderingData renderingData)
    {
        renderer.EnqueuePass(customPass1);
        renderer.EnqueuePass(customPass2);
    }
    
    // Create the first render pass, which creates a texture and adds it to the frame data
    class AddOwnTexturePass : ScriptableRenderPass
    {

        class PassData
        {
            internal TextureHandle copySourceTexture;
        }

        // Create the custom data class that contains the new texture
        public class CustomData : ContextItem {
            public TextureHandle newTextureForFrameData;

            public override void Reset()
            {
                newTextureForFrameData = TextureHandle.nullHandle;
            }
        }

        public override void RecordRenderGraph(RenderGraph renderGraph, ContextContainer frameContext)
        {
            using (var builder = renderGraph.AddRasterRenderPass<PassData>("Create new texture", out var passData))
            {
                // Create a texture and set it as the render target
                RenderTextureDescriptor textureProperties = new RenderTextureDescriptor(Screen.width, Screen.height, RenderTextureFormat.Default, 0);
                TextureHandle texture = UniversalRenderer.CreateRenderGraphTexture(renderGraph, textureProperties, "My texture", false);
                CustomData customData = frameContext.Create<CustomData>();
                customData.newTextureForFrameData = texture;
                builder.SetRenderAttachment(texture, 0, AccessFlags.Write);
    
                builder.AllowPassCulling(false);

                builder.SetRenderFunc((PassData data, RasterGraphContext context) => ExecutePass(data, context));
            }
        }

        static void ExecutePass(PassData data, RasterGraphContext context)
        {          
            // Clear the render target (the texture) to yellow
            context.cmd.ClearRenderTarget(true, true, Color.yellow);
        }
 
    }

    // Create the second render pass, which fetches the texture and writes to it
    class DrawTrianglePass : ScriptableRenderPass
    {

        class PassData
        {
            // No local pass data needed
        }      

        public override void RecordRenderGraph(RenderGraph renderGraph, ContextContainer frameContext)
        {
            using (var builder = renderGraph.AddRasterRenderPass<PassData>("Fetch texture and draw triangle", out var passData))
            {                                
                // Fetch the yellow texture from the frame data and set it as the render target
                var customData = frameContext.Get<AddOwnTexturePass.CustomData>();
                var customTexture = customData.newTextureForFrameData;
                builder.SetRenderAttachment(customTexture, 0, AccessFlags.Write);

                builder.AllowPassCulling(false);

                builder.SetRenderFunc((PassData data, RasterGraphContext context) => ExecutePass(data, context));
            }
        }

        static void ExecutePass(PassData data, RasterGraphContext context)
        {          
            // Generate a triangle mesh
            Mesh mesh = new Mesh();
            mesh.vertices = new Vector3[] { new Vector3(0, 0, 0), new Vector3(1, 0, 0), new Vector3(0, 1, 0) };
            mesh.triangles = new int[] { 0, 1, 2 };
            
            // Draw a triangle to the render target (the yellow texture)
            context.cmd.DrawMesh(mesh, Matrix4x4.identity, new Material(Shader.Find("Universal Render Pipeline/Unlit")));
        }
    }
}

将纹理设置为全局纹理

如果您需要将纹理用作着色器在 GPU 上运行的程序。 更多信息
参见词汇表
游戏对象Unity 场景中的基本对象,可以表示角色、道具、场景、摄像机、路径点等等。游戏对象的功 能由附加在其上的组件定义。 更多信息
参见词汇表
上的输入,您可以将纹理设置为全局纹理。全局纹理可用于所有着色器和渲染通道。

将纹理设置为全局纹理可能会使渲染速度变慢。请参考SetGlobalTexture

不要使用不安全的渲染通道CommandBuffer.SetGlobal 将纹理设置为全局纹理,因为这可能会导致错误。

要设置全局纹理,在 RecordRenderGraph 方法中,使用SetGlobalTextureAfterPass 方法。

例如

// Allocate a global shader texture called _GlobalTexture
private int globalTextureID = Shader.PropertyToID("_GlobalTexture")

using (var builder = renderGraph.AddRasterRenderPass<PassData>("MyPass", out var passData)){

    // Set a texture to the global texture
    builder.SetGlobalTextureAfterPass(texture, globalTextureID);
}

如果您还没有调用 SetRenderFunc,您还必须添加一个空的渲染函数。例如

    builder.SetRenderFunc((PassData data, RasterGraphContext context) => { });

您现在可以

  • 使用 UseGlobalTexture()UseAllGlobalTextures() API 在不同的渲染通道中访问纹理。
  • 在场景中的任何材质上使用纹理。场景场景包含游戏环境和菜单。可以将每个唯一的场景文件视为一个唯一的关卡。在每个场景中,您都放置环境、障碍物和装饰物,本质上是分段设计和构建您的游戏。 更多信息
    参见词汇表
在 URP 中渲染通道中使用纹理
URP 中 blitting 的最佳实践