Rename and add xmldoc for smooth seeking method

This commit is contained in:
Dean Herbert
2021-01-15 16:14:21 +09:00
parent 40f020c683
commit 04fa32bc34
5 changed files with 24 additions and 17 deletions

View File

@ -170,7 +170,7 @@ namespace osu.Game.Screens.Edit.Compose.Components
if (clickedBlueprint == null || SelectionHandler.SelectedBlueprints.FirstOrDefault(b => b.IsHovered) != clickedBlueprint)
return false;
EditorClock?.SeekTo(clickedBlueprint.HitObject.StartTime);
EditorClock?.SeekSmoothlyTo(clickedBlueprint.HitObject.StartTime);
return true;
}