IKeyframeGroup.cs 362 B

1234567891011121314151617
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace Funly.SkyStudio
  5. {
  6. public interface IKeyframeGroup
  7. {
  8. string name { get; set; }
  9. string id { get; }
  10. void SortKeyframes();
  11. void TrimToSingleKeyframe();
  12. void RemoveKeyFrame(IBaseKeyframe keyframe);
  13. int GetKeyFrameCount();
  14. }
  15. }