설명 없음
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.

IAddDeleteItemMode.cs 275B

12345678910
  1. using System.Collections.Generic;
  2. namespace UnityEditor.Timeline
  3. {
  4. interface IAddDeleteItemMode
  5. {
  6. void InsertItemsAtTime(IEnumerable<ItemsPerTrack> itemsGroups, double requestedTime);
  7. void RemoveItems(IEnumerable<ItemsPerTrack> itemsGroups);
  8. }
  9. }