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

@ -58,7 +58,7 @@ namespace osu.Game.Screens.Edit.Components.Timelines.Summary.Parts
return;
float markerPos = Math.Clamp(ToLocalSpace(screenPosition).X, 0, DrawWidth);
editorClock.SeekTo(markerPos / DrawWidth * editorClock.TrackLength);
editorClock.SeekSmoothlyTo(markerPos / DrawWidth * editorClock.TrackLength);
});
}