StellarXipher/Library/PackageCache/com.unity.render-pipelines.universal@67f62921f1e8/Runtime/RendererFeatures/DisallowMultipleRendererFeature.cs
2025-02-06 17:03:40 -05:00

26 lines
931 B
C#

using System;
namespace UnityEngine.Rendering.Universal
{
/// <summary>
/// <para>Prevents <c>ScriptableRendererFeatures</c> of same type to be added more than once to a Scriptable Renderer.</para>
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
public class DisallowMultipleRendererFeature : Attribute
{
/// <summary>
/// Set the custom title for renderer feature.
/// </summary>
public string customTitle { private set; get; }
/// <summary>
/// Constructor for the attribute to prevent <c>ScriptableRendererFeatures</c> of same type to be added more than once to a Scriptable Renderer.
/// </summary>
/// <param name="customTitle">Sets the custom title for renderer feature.</param>
public DisallowMultipleRendererFeature(string customTitle = null)
{
this.customTitle = customTitle;
}
}
}