DrawAfterEventsAttribute.cs 597 B

1234567891011121314151617
  1. // Animancer // https://kybernetik.com.au/animancer // Copyright 2018-2024 Kybernetik //
  2. using System;
  3. namespace Animancer
  4. {
  5. /// <summary>[Editor-Conditional]
  6. /// Causes an Inspector field in an <see cref="ITransition"/>
  7. /// to be drawn after its events where the events would normally be drawn last.
  8. /// </summary>
  9. /// https://kybernetik.com.au/animancer/api/Animancer/DrawAfterEventsAttribute
  10. ///
  11. [AttributeUsage(AttributeTargets.Field)]
  12. [System.Diagnostics.Conditional(Strings.UnityEditor)]
  13. public sealed class DrawAfterEventsAttribute : Attribute { }
  14. }