StellarXipher/Library/PackageCache/com.unity.render-pipelines.core@1f7e2d13edc7/Tests/Runtime/SecondCustomRenderPipelineAsset.cs
2025-02-06 17:03:40 -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)
{
}
}
}