SW 중심대학 OSS GIT 서버 박건태, 이승준, 고기완, 이준호 새로운 배포
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
427 B

4 years ago
  1. namespace UnityEditor.Timeline
  2. {
  3. enum AttractedEdge
  4. {
  5. None,
  6. Left,
  7. Right
  8. }
  9. interface IAttractable
  10. {
  11. bool ShouldSnapTo(ISnappable snappable);
  12. double start { get; }
  13. double end { get; }
  14. }
  15. interface IAttractionHandler
  16. {
  17. void OnAttractedEdge(IAttractable attractable, ManipulateEdges manipulateEdges, AttractedEdge edge, double time);
  18. }
  19. }