Files
JJBB/Assets/Plugins/PostProcessing/Editor/Attributes/PostProcessingModelEditorAttribute.cs

17 lines
399 B
C#
Raw Permalink Normal View History

2024-08-23 15:49:34 +08:00
using System;
namespace UnityEditor.PostProcessing
{
public class PostProcessingModelEditorAttribute : Attribute
{
public readonly Type type;
public readonly bool alwaysEnabled;
public PostProcessingModelEditorAttribute(Type type, bool alwaysEnabled = false)
{
this.type = type;
this.alwaysEnabled = alwaysEnabled;
}
}
}