Maze / Library /PackageCache /com.unity.timeline@1.6.5 /Editor /Manipulators /AddDelete /IAddDeleteItemMode.cs
| using System.Collections.Generic; | |
| namespace UnityEditor.Timeline | |
| { | |
| interface IAddDeleteItemMode | |
| { | |
| void InsertItemsAtTime(IEnumerable<ItemsPerTrack> itemsGroups, double requestedTime); | |
| void RemoveItems(IEnumerable<ItemsPerTrack> itemsGroups); | |
| } | |
| } | |