File size: 1,138 Bytes
18a519f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | using System;
using System.Collections.Generic;
using System.Linq;
using UnityEngine.Timeline;
namespace UnityEditor.Timeline
{
class ItemsPerTrack
{
public virtual TrackAsset targetTrack { get; }
public IEnumerable<ITimelineItem> items
{
get { return m_ItemsGroup.items; }
}
public IEnumerable<TimelineClip> clips
{
get { return m_ItemsGroup.items.OfType<ClipItem>().Select(i => i.clip); }
}
public IEnumerable<IMarker> markers
{
get { return m_ItemsGroup.items.OfType<MarkerItem>().Select(i => i.marker); }
}
public ITimelineItem leftMostItem
{
get { return m_ItemsGroup.leftMostItem; }
}
public ITimelineItem rightMostItem
{
get { return m_ItemsGroup.rightMostItem; }
}
protected readonly ItemsGroup m_ItemsGroup;
public ItemsPerTrack(TrackAsset targetTrack, IEnumerable<ITimelineItem> items)
{
this.targetTrack = targetTrack;
m_ItemsGroup = new ItemsGroup(items);
}
}
}
|