Files
stas-barecky/Library/PackageCache/com.unity.render-pipelines.universal@66e99ffa09c7/Runtime/Debug/UniversalRenderPipelineVolumeDebugSettings.deprecated.cs
2026-01-08 20:43:08 +05:00

14 lines
550 B
C#

using System;
namespace UnityEngine.Rendering.Universal
{
public partial class UniversalRenderPipelineVolumeDebugSettings
{
/// <summary>
/// Specifies the render pipeline for this volume settings
/// </summary>
[Obsolete("This property is obsolete and kept only for not breaking user code. VolumeDebugSettings will use current pipeline when it needs to gather volume component types and paths. #from(2023.2)")]
public override Type targetRenderPipeline => typeof(UniversalRenderPipeline);
}
}