Unity-NorthStar / data /Packages /com.unity.render-pipelines.universal /Runtime /RendererFeatures /DisallowMultipleRendererFeature.cs
| 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> | |
| [] | |
| 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; | |
| } | |
| } | |
| } | |