INotificationOptionProvider.cs 577 B

123456789101112131415
  1. namespace UnityEngine.Timeline
  2. {
  3. /// <summary>
  4. /// Implement this interface to change the behaviour of an INotification.
  5. /// </summary>
  6. /// This interface must be implemented along with <see cref="UnityEngine.Playables.INotification"/> to modify the default behaviour of a notification.
  7. /// <seealso cref="UnityEngine.Timeline.NotificationFlags"/>
  8. public interface INotificationOptionProvider
  9. {
  10. /// <summary>
  11. /// The flags that change the triggering behaviour.
  12. /// </summary>
  13. NotificationFlags flags { get; }
  14. }
  15. }