Files
JJBB/Assets/Plugins/PostProcessing/Runtime/Attributes/GetSetAttribute.cs

14 lines
272 B
C#
Raw Normal View History

2024-08-23 15:49:34 +08:00
namespace UnityEngine.PostProcessing
{
public sealed class GetSetAttribute : PropertyAttribute
{
public readonly string name;
public bool dirty;
public GetSetAttribute(string name)
{
this.name = name;
}
}
}