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