Example #1
0
 public static bool Do(TimelineWindow.TimelineState state, TimelineClip clip)
 {
     TimelineClip[] items = new TimelineClip[]
     {
         clip
     };
     return(ItemAction <TimelineClip> .DoInternal(typeof(CopyClipsToClipboard), state, items));
 }
Example #2
0
 public static bool Do(TimelineWindow.TimelineState state, TimelineMarker theMarker)
 {
     TimelineMarker[] items = new TimelineMarker[]
     {
         theMarker
     };
     return(ItemAction <TimelineMarker> .DoInternal(typeof(CopyMarkersToClipboard), state, items));
 }
Example #3
0
 public static bool Do(TimelineWindow.TimelineState state, TimelineClip[] clips)
 {
     return(ItemAction <TimelineClip> .DoInternal(typeof(CopyClipsToClipboard), state, clips));
 }
Example #4
0
 public static bool Do(TimelineWindow.TimelineState state, TimelineMarker[] markers)
 {
     return(ItemAction <TimelineMarker> .DoInternal(typeof(CopyMarkersToClipboard), state, markers));
 }