Files
Test-Multiplayer/Library/PackageCache/com.unity.timeline@6b9e48457ddb/Editor/treeview/IRowGUI.cs
pelpanagiotis 329b7d3183 First Commit
2025-12-21 18:31:02 +02:00

17 lines
325 B
C#

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);
}
}