File size: 371 Bytes
18a519f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using UnityEngine;
using UnityEngine.Timeline;

namespace DocCodeExamples
{
    class TrackAssetExamples_HideAPI
    {
        #region declare-trackAssetExample

        [TrackColor(1, 0, 0)]
        [TrackBindingType(typeof(Animator))]
        [TrackClipType(typeof(AnimationClip))]
        public class CustomAnimationTrack : TrackAsset { }

        #endregion
    }
}