summaryrefslogtreecommitdiff
path: root/Library/PackageCache/com.unity.timeline@1.2.13/Editor/treeview/IRowGUI.cs
blob: 0745c6a5bc4fb1d0c7c6f3cf8954e36a92a5a0d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using UnityEngine;
using UnityEngine.Timeline;

namespace UnityEditor.Timeline
{
    interface IRowGUI
    {
        TrackAsset asset { get; }
        Rect boundingRect { get; }
        bool locked { get; }
        bool showMarkers { get; }
        bool muted { get; }

        Rect ToWindowSpace(Rect treeViewRect);
    }
}