A game about forced loneliness, made by TACStudios
at master 18 lines 480 B view raw
1using UnityEngine; 2using UnityEngine.Rendering; 3 4namespace UnityEngine.Rendering.Tests 5{ 6 class SecondCustomRenderPipelineAsset : RenderPipelineAsset<SecondCustomRenderPipeline> 7 { 8 protected override RenderPipeline CreatePipeline() 9 => new SecondCustomRenderPipeline(); 10 } 11 12 class SecondCustomRenderPipeline : RenderPipeline 13 { 14 protected override void Render(ScriptableRenderContext context, Camera[] cameras) 15 { 16 } 17 } 18}