CoreAttributes.cs 410 B

12345678910111213141516
  1. using System;
  2. namespace UnityEngine.Rendering
  3. {
  4. /// <summary>
  5. /// Attribute used to customize UI display.
  6. /// </summary>
  7. [AttributeUsage(AttributeTargets.Field)]
  8. public class DisplayInfoAttribute : Attribute
  9. {
  10. /// <summary>Display name used in UI.</summary>
  11. public string name;
  12. /// <summary>Display order used in UI.</summary>
  13. public int order;
  14. }
  15. }