GetSetAttribute.cs 243 B

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