TrackballAttribute.cs 235 B

1234567891011121314
  1. using System;
  2. namespace UnityEngine.PostProcessing
  3. {
  4. public sealed class TrackballAttribute : PropertyAttribute
  5. {
  6. public TrackballAttribute(string method)
  7. {
  8. this.method = method;
  9. }
  10. public readonly string method;
  11. }
  12. }