SW 중심대학 OSS GIT 서버
박건태, 이승준, 고기완, 이준호
새로운 배포
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
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 {}}
|