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.
18 lines
526 B
18 lines
526 B
using System.Collections.Generic;
|
|
|
|
namespace UnityEditor.Timeline
|
|
{
|
|
class AddDeleteItemModeRipple : IAddDeleteItemMode
|
|
{
|
|
public void InsertItemsAtTime(IEnumerable<ItemsPerTrack> itemsGroups, double requestedTime)
|
|
{
|
|
ItemsUtils.SetItemsStartTime(itemsGroups, requestedTime);
|
|
EditModeRippleUtils.Insert(itemsGroups);
|
|
}
|
|
|
|
public void RemoveItems(IEnumerable<ItemsPerTrack> itemsGroups)
|
|
{
|
|
EditModeRippleUtils.Remove(itemsGroups);
|
|
}
|
|
}
|
|
}
|
|
|