TextAnimationTrack.cs 361 B

12345678910111213
  1. using UnityEngine.Timeline;
  2. using UnityEngine.UI;
  3. namespace UnityUIPlayables
  4. {
  5. [TrackColor(0.1098f, 0.3529f, 0.8392f)]
  6. [TrackClipType(typeof(TextAnimationClip))]
  7. [TrackBindingType(typeof(Text))]
  8. public class TextAnimationTrack
  9. : AnimationTrack<Text, TextAnimationMixer, TextAnimationMixerBehaviour, TextAnimationBehaviour>
  10. {
  11. }
  12. }