mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 07:33:55 +09:00
Keyword Spacing and Brackets Fixing
This commit is contained in:
@ -54,7 +54,6 @@ namespace osu.Game.Screens.Play.HUD
|
||||
{
|
||||
AutoSizeAxes = Axes.Both,
|
||||
Scale = new Vector2(0.6f),
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -79,7 +79,7 @@ namespace osu.Game.Screens.Play.ReplaySettings
|
||||
{
|
||||
Origin = Anchor.Centre,
|
||||
Anchor = Anchor.CentreRight,
|
||||
Position = new Vector2(-15,0),
|
||||
Position = new Vector2(-15, 0),
|
||||
Icon = FontAwesome.fa_bars,
|
||||
Scale = new Vector2(0.75f),
|
||||
Action = toggleContentVisibility,
|
||||
|
@ -146,7 +146,7 @@ namespace osu.Game.Screens.Play
|
||||
|
||||
double progress = ((audioClock?.CurrentTime ?? Time.Current) - firstHitTime) / (lastHitTime - firstHitTime);
|
||||
|
||||
if(progress < 1)
|
||||
if (progress < 1)
|
||||
{
|
||||
bar.UpdatePosition((float)progress);
|
||||
graph.Progress = (int)(graph.ColumnCount * progress);
|
||||
|
Reference in New Issue
Block a user