You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
699 B
20 lines
699 B
using System.Collections.Generic;
|
|
using UnityEngine.Rendering;
|
|
|
|
namespace UnityEditor.Rendering
|
|
{
|
|
[SupportedOnRenderPipeline(typeof(DummyRenderPipelineAsset))]
|
|
class DummyRenderPipelineGlobalSettings : RenderPipelineGlobalSettings<DummyRenderPipelineGlobalSettings, DummyRenderPipeline>
|
|
{
|
|
internal static string defaultPath => "Assets/Tests/DummyRenderPipelineGlobalSettings.asset";
|
|
|
|
public bool initializedCalled = false;
|
|
|
|
protected override List<IRenderPipelineGraphicsSettings> settingsList { get; } = new();
|
|
|
|
public override void Initialize(RenderPipelineGlobalSettings source = null)
|
|
{
|
|
initializedCalled = true;
|
|
}
|
|
}
|
|
}
|