// Animancer // https://kybernetik.com.au/animancer // Copyright 2018-2023 Kybernetik //
namespace Animancer
{
/// An object which has an .
///
/// Documentation: Animancer Events
///
/// https://kybernetik.com.au/animancer/api/Animancer/IHasEvents
///
public interface IHasEvents
{
/************************************************************************************************************************/
/// Events which will be triggered as the animation plays.
AnimancerEvent.Sequence Events { get; }
/// Events which will be triggered as the animation plays.
ref AnimancerEvent.Sequence.Serializable SerializedEvents { get; }
/************************************************************************************************************************/
}
/// A combination of and .
/// https://kybernetik.com.au/animancer/api/Animancer/ITransitionWithEvents
///
public interface ITransitionWithEvents : ITransition, IHasEvents { }
}