xyi/Library/PackageCache/com.unity.render-pipelines.core@bc2ed918b479/Runtime/RenderGraph/IRenderGraphEnabledRenderPipeline.cs
Vladislav 2750530006 1
2025-09-18 15:33:57 +03:00

14 lines
473 B
C#

namespace UnityEngine.Rendering.RenderGraphModule
{
/// <summary>
/// Interface to add/manage Render Graph related parameters across different types of RenderPipelineAssets.
/// </summary>
public interface IRenderGraphEnabledRenderPipeline
{
/// <summary>
/// Indicates if this render pipeline instance supports ImmediateMode when debugging the render graph.
/// </summary>
bool isImmediateModeSupported { get; }
}
}