Rasagar/Library/PackageCache/com.unity.render-pipelines.universal/Runtime/RendererFeatures/DisallowMultipleRendererFeature.cs

26 lines
931 B
C#
Raw Normal View History

2024-08-26 13:07:20 -07:00
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;
}
}
}