Files
GameDevTVObstacleDodge/Library/PackageCache/com.unity.render-pipelines.core@67f868dbad82/Tests/Runtime/SecondCustomRenderPipelineAsset.cs

20 lines
518 B
C#
Raw Normal View History

2026-01-08 16:50:20 +00:00
using UnityEngine;
using UnityEngine.Rendering;
using System.Collections.Generic;
namespace UnityEngine.Rendering.Tests
{
class SecondCustomRenderPipelineAsset : RenderPipelineAsset<SecondCustomRenderPipeline>
{
protected override RenderPipeline CreatePipeline()
=> new SecondCustomRenderPipeline();
}
class SecondCustomRenderPipeline : RenderPipeline
{
protected override void Render(ScriptableRenderContext context, List<Camera> cameras)
{
}
}
}