RawImageAnimationClipEditor.cs 242 B

123456789
  1. using UnityEditor.Timeline;
  2. namespace UnityUIPlayables.Editor
  3. {
  4. [CustomTimelineEditor(typeof(RawImageAnimationClip))]
  5. public class RawImageAnimationClipEditor : AnimationTimelineClipEditor<RawImageAnimationBehaviour>
  6. {
  7. }
  8. }