如果您正在基于脚本来实现的自定义渲染管线(SRP)创建自定义渲染管线,您的项目必须包含以下内容
CreatePipeline()
方法的脚本。此脚本定义了您的渲染管线资产。Render()
方法的脚本。此脚本定义了您的渲染管线实例,也是您编写自定义渲染代码的位置。由于这些元素之间关联非常紧密,您应该同时创建它们。
以下示例展示了如何创建一个实例化渲染管线实例的脚本,定义渲染管线实例的脚本,以及渲染管线资产本身的基本自定义渲染管线资产脚本。
创建一个名为ExampleRenderPipelineAsset.cs的C#脚本。
将以下代码复制并粘贴到新脚本中
using UnityEngine;
using UnityEngine.Rendering;
// The CreateAssetMenu attribute lets you create instances of this class in the Unity Editor.
[CreateAssetMenu(menuName = "Rendering/ExampleRenderPipelineAsset")]
public class ExampleRenderPipelineAsset : RenderPipelineAsset
{
// Unity calls this method before rendering the first frame.
// If a setting on the Render Pipeline Asset changes, Unity destroys the current Render Pipeline Instance and calls this method again before rendering the next frame.
protected override RenderPipeline CreatePipeline() {
// Instantiate the Render Pipeline that this custom SRP uses for rendering.
return new ExampleRenderPipelineInstance();
}
}
创建一个名为ExampleRenderPipelineAsset.cs的C#脚本。
将以下代码复制并粘贴到新脚本中
using UnityEngine;
using UnityEngine.Rendering;
public class ExampleRenderPipelineInstance : RenderPipeline
{
public ExampleRenderPipelineInstance() {
}
protected override void Render (ScriptableRenderContext context, Camera[] cameras) {
// This is where you can write custom rendering code. Customize this method to customize your SRP.
}
}
在项目视图中,要么单击添加(+)按钮,要么打开上下文菜单,导航到创建,然后选择渲染 > 示例渲染管线资产。Unity将在项目视图中创建一个新的渲染管线资产。
默认情况下,渲染管线资产存储有关使用哪个渲染管线实例进行渲染、编辑器中使用的默认材质和着色器的信息。在您的RenderPipelineAsset
脚本中,您可以扩展您的渲染管线资产,以便存储更多数据,并且您可以在项目中拥有具有不同配置的多个不同的渲染管线资产。例如,您可以使用渲染管线资产来存储不同硬件级别的配置数据。高清渲染管线(HDRP)和通用渲染管线(URP)包含此类示例。
以下示例展示了如何创建一个 RenderPipelineAsset
脚本,该脚本定义了一个拥有公共数据的渲染管线资产,您可以使用 检查器一个Unity窗口,显示当前选定的GameObject、资产或项目设置的信息,允许您检查并编辑值。 更多信息
查看词汇表設定每个实例的数据,并使用具有构造函数接收渲染管线资产的渲染管线实例。
创建一个名为ExampleRenderPipelineAsset.cs的C#脚本。
将以下代码复制并粘贴到新脚本中
using UnityEngine;
using UnityEngine.Rendering;
// The CreateAssetMenu attribute lets you create instances of this class in the Unity Editor.
[CreateAssetMenu(menuName = "Rendering/ExampleRenderPipelineAsset")]
public class ExampleRenderPipelineAsset : RenderPipelineAsset
{
// This data can be defined in the Inspector for each Render Pipeline Asset
public Color exampleColor;
public string exampleString;
// Unity calls this method before rendering the first frame.
// If a setting on the Render Pipeline Asset changes, Unity destroys the current Render Pipeline Instance and calls this method again before rendering the next frame.
protected override RenderPipeline CreatePipeline() {
// Instantiate the Render Pipeline that this custom SRP uses for rendering, and pass a reference to this Render Pipeline Asset.
// The Render Pipeline Instance can then access the configuration data defined above.
return new ExampleRenderPipelineInstance(this);
}
}
创建一个名为ExampleRenderPipelineAsset.cs的C#脚本。
将以下代码复制并粘贴到新脚本中
using UnityEngine;
using UnityEngine.Rendering;
public class ExampleRenderPipelineInstance : RenderPipeline
{
// Use this variable to a reference to the Render Pipeline Asset that was passed to the constructor
private ExampleRenderPipelineAsset renderPipelineAsset;
// The constructor has an instance of the ExampleRenderPipelineAsset class as its parameter.
public ExampleRenderPipelineInstance(ExampleRenderPipelineAsset asset) {
renderPipelineAsset = asset;
}
protected override void Render(ScriptableRenderContext context, Camera[] cameras) {
// This is an example of using the data from the Render Pipeline Asset.
Debug.Log(renderPipelineAsset.exampleString);
// This is where you can write custom rendering code. Customize this method to customize your SRP.
}
}
在项目视图中,要么单击添加(+)按钮,要么打开上下文菜单,导航到创建,然后选择渲染 > 示例渲染管线资产。Unity将在项目视图中创建一个新的渲染管线资产。