RecorderTrack.cs 327 B

123456789101112131415
  1. using System;
  2. using UnityEngine.Timeline;
  3. namespace UnityEditor.Recorder.Timeline
  4. {
  5. /// <summary>
  6. /// Indicates the Track type for the Recorder.
  7. /// </summary>
  8. [Serializable]
  9. [TrackClipType(typeof(RecorderClip))]
  10. [TrackColor(0f, 0.53f, 0.08f)]
  11. public class RecorderTrack : TrackAsset
  12. {
  13. }
  14. }