GetSetAttribute.cs 272 B

12345678910111213
  1. namespace UnityEngine.PostProcessing
  2. {
  3. public sealed class GetSetAttribute : PropertyAttribute
  4. {
  5. public readonly string name;
  6. public bool dirty;
  7. public GetSetAttribute(string name)
  8. {
  9. this.name = name;
  10. }
  11. }
  12. }