mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 07:06:35 +09:00
Formatting
This commit is contained in:
@ -25,7 +25,7 @@ namespace osu.Desktop.VisualTests.Tests
|
||||
Origin = Anchor.BottomLeft,
|
||||
RelativeSizeAxes = Axes.X,
|
||||
Length = 100,
|
||||
OnSeek = (time) => progress.CurrentTime = time,
|
||||
OnSeek = time => progress.CurrentTime = time,
|
||||
});
|
||||
|
||||
AddButton("Toggle Bar", progress.ToggleVisibility);
|
||||
|
@ -140,12 +140,6 @@ namespace osu.Game.Screens.Play
|
||||
|
||||
hudOverlay.BindHitRenderer(hitRenderer);
|
||||
hudOverlay.Progress.Length = Beatmap.Track.Length;
|
||||
hudOverlay.Progress.OnSeek = (time) =>
|
||||
{
|
||||
//todo: temporary
|
||||
Beatmap.Track.Seek(time);
|
||||
Beatmap.Track.Start();
|
||||
};
|
||||
|
||||
//bind HitRenderer to ScoreProcessor and ourselves (for a pass situation)
|
||||
hitRenderer.OnAllJudged += onCompletion;
|
||||
|
@ -10,7 +10,6 @@ using osu.Framework.Graphics;
|
||||
using osu.Framework.Graphics.Sprites;
|
||||
using osu.Framework.Graphics.Containers;
|
||||
using osu.Framework.Extensions.Color4Extensions;
|
||||
using osu.Framework.Graphics.Primitives;
|
||||
|
||||
namespace osu.Game.Screens.Play
|
||||
{
|
||||
|
Reference in New Issue
Block a user