StellarXipher/Library/PackageCache/com.unity.render-pipelines.core@540dd21c6cd7/Tests/Runtime/SecondCustomRenderPipelineAsset.cs
2025-02-06 16:45:46 -05:00

19 lines
480 B
C#

using UnityEngine;
using UnityEngine.Rendering;
namespace UnityEngine.Rendering.Tests
{
class SecondCustomRenderPipelineAsset : RenderPipelineAsset<SecondCustomRenderPipeline>
{
protected override RenderPipeline CreatePipeline()
=> new SecondCustomRenderPipeline();
}
class SecondCustomRenderPipeline : RenderPipeline
{
protected override void Render(ScriptableRenderContext context, Camera[] cameras)
{
}
}
}