Files
LowPolyBattleSim/Library/PackageCache/com.unity.render-pipelines.universal@087c6d6dbb7d/Runtime/RendererFeatures/DisallowMultipleRendererFeature.cs
Caleb Sandford deQuincey ecdd3e2a9e intial commit
2025-06-27 23:27:49 +01: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;
}
}
}