File size: 631 Bytes
18a519f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | using System;
namespace UnityEngine.Timeline
{
/// <summary>
/// Use this track to emit signals to a bound SignalReceiver.
/// </summary>
/// <remarks>
/// This track cannot contain clips.
/// </remarks>
/// <seealso cref="UnityEngine.Timeline.SignalEmitter"/>
/// <seealso cref="UnityEngine.Timeline.SignalReceiver"/>
/// <seealso cref="UnityEngine.Timeline.SignalAsset"/>
[Serializable]
[TrackBindingType(typeof(SignalReceiver))]
[TrackColor(0.25f, 0.25f, 0.25f)]
[ExcludeFromPreset]
[TimelineHelpURL(typeof(SignalTrack))]
public class SignalTrack : MarkerTrack { }
}
|