Add shared selected keyframes moving ability for timeline tracks

#519
This commit is contained in:
Wojtek Figat
2021-08-25 15:07:53 +02:00
parent 2beb0e137b
commit b85521decd
10 changed files with 266 additions and 127 deletions

View File

@@ -418,5 +418,12 @@ namespace FlaxEditor.GUI.Timeline.Tracks
if (Keyframes != null && Keyframes.Visible)
Keyframes.OnKeyframesDelete(editor);
}
/// <inheritdoc />
public void OnKeyframesMove(IKeyframesEditor editor, ContainerControl control, Vector2 location, bool start, bool end)
{
if (Keyframes != null && Keyframes.Visible)
Keyframes.OnKeyframesMove(editor, control, location, start, end);
}
}
}