Initial Commit
This commit is contained in:
parent
53eb92e9af
commit
270ab7d11f
15341 changed files with 700234 additions and 0 deletions
|
@ -0,0 +1,31 @@
|
|||
using System;
|
||||
|
||||
namespace UnityEngine.Timeline
|
||||
{
|
||||
/// <summary>
|
||||
/// Use these flags to specify the notification behaviour.
|
||||
/// </summary>
|
||||
/// <see cref="UnityEngine.Playables.INotification"/>
|
||||
[Flags]
|
||||
[Serializable]
|
||||
public enum NotificationFlags : short
|
||||
{
|
||||
/// <summary>
|
||||
/// Use this flag to send the notification in Edit Mode.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Sent on discontinuous jumps in time.
|
||||
/// </remarks>
|
||||
TriggerInEditMode = 1 << 0,
|
||||
|
||||
/// <summary>
|
||||
/// Use this flag to send the notification if playback starts after the notification time.
|
||||
/// </summary>
|
||||
Retroactive = 1 << 1,
|
||||
|
||||
/// <summary>
|
||||
/// Use this flag to send the notification only once when looping.
|
||||
/// </summary>
|
||||
TriggerOnce = 1 << 2,
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue