@@ -288,6 +288,9 @@ namespace FlaxEditor.GUI.Timeline.Tracks
|
||||
/// <inheritdoc />
|
||||
public override bool CanRename => false;
|
||||
|
||||
/// <inheritdoc />
|
||||
public override bool CanCopyPaste => false;
|
||||
|
||||
/// <summary>
|
||||
/// Called when member gets changed.
|
||||
/// </summary>
|
||||
@@ -314,6 +317,14 @@ namespace FlaxEditor.GUI.Timeline.Tracks
|
||||
}
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
public override void OnDuplicated(Track clone)
|
||||
{
|
||||
base.OnDuplicated(clone);
|
||||
|
||||
clone.Name = Guid.NewGuid().ToString("N");
|
||||
}
|
||||
|
||||
private void OnTimelineShowPreviewValuesChanged()
|
||||
{
|
||||
_previewValue.Visible = Timeline.ShowPreviewValues;
|
||||
|
||||
Reference in New Issue
Block a user