forked from zxl/LaboratoryProtection
21 lines
563 B
C#
21 lines
563 B
C#
using UnityEngine.Playables;
|
|
using UnityTest.ZXL;
|
|
|
|
namespace Mono.Event
|
|
{
|
|
/// <summary>
|
|
/// timeline播放结束抛出事件
|
|
/// </summary>
|
|
public class PlayableStoppedEventArgs : GameEventArgs
|
|
{
|
|
public static readonly int EventId = typeof(PlayableStoppedEventArgs).GetHashCode();
|
|
public override int Id => EventId;
|
|
|
|
public PlayableDirector playableDirector;
|
|
|
|
public PlayableStoppedEventArgs(PlayableDirector playableDirector)
|
|
{
|
|
this.playableDirector = playableDirector;
|
|
}
|
|
}
|
|
} |