mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
19 lines
587 B
C#
19 lines
587 B
C#
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]
|
|
public class SignalTrack : MarkerTrack {}
|
|
}
|