Files
CartoonFPS/Library/PackageCache/com.unity.render-pipelines.core@2be5e7224a10/Tests/Runtime/SecondCustomRenderPipelineAsset.cs
SHOUTING_PIRATE 4c8592d0ab initial commit
2025-08-05 09:30:40 +01: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)
{
}
}
}