Refactor Timeline UI to use track flags

This commit is contained in:
Wojtek Figat
2021-12-07 23:27:58 +01:00
parent 2ef0aabfbc
commit bb674b43f9
10 changed files with 81 additions and 80 deletions

View File

@@ -101,21 +101,6 @@ namespace FlaxEditor.GUI.Timeline.Tracks
}
}
/// <summary>
/// Gets or sets the nested animation looping mode.
/// </summary>
public bool TrackLoop
{
get => Loop;
set
{
if (Loop == value)
return;
Loop = value;
Timeline?.MarkAsEdited();
}
}
/// <inheritdoc />
public NestedSceneAnimationTrack(ref TrackCreateOptions options)
: base(ref options)