mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 18:23:04 +08:00
Merge branch 'master' into netcoreapp2.1
This commit is contained in:
commit
652e2ccaf5
@ -12,28 +12,23 @@ namespace osu.Game.Screens.Multi.Components
|
|||||||
private const float text_size = 30;
|
private const float text_size = 30;
|
||||||
private const float transition_duration = 100;
|
private const float transition_duration = 100;
|
||||||
|
|
||||||
private readonly OsuSpriteText count, slash, max;
|
private readonly OsuSpriteText count, slash, maxText;
|
||||||
|
|
||||||
public int Count
|
public int Count
|
||||||
{
|
{
|
||||||
set => count.Text = value.ToString();
|
set => count.Text = value.ToString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private int? max;
|
||||||
public int? Max
|
public int? Max
|
||||||
{
|
{
|
||||||
|
get => max;
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
if (value == null)
|
if (value == max) return;
|
||||||
{
|
max = value;
|
||||||
slash.FadeOut(transition_duration);
|
|
||||||
max.FadeOut(transition_duration);
|
updateMax();
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
slash.FadeIn(transition_duration);
|
|
||||||
max.Text = value.ToString();
|
|
||||||
max.FadeIn(transition_duration);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -56,12 +51,29 @@ namespace osu.Game.Screens.Multi.Components
|
|||||||
TextSize = text_size,
|
TextSize = text_size,
|
||||||
Font = @"Exo2.0-Light"
|
Font = @"Exo2.0-Light"
|
||||||
},
|
},
|
||||||
max = new OsuSpriteText
|
maxText = new OsuSpriteText
|
||||||
{
|
{
|
||||||
TextSize = text_size,
|
TextSize = text_size,
|
||||||
Font = @"Exo2.0-Light"
|
Font = @"Exo2.0-Light"
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
updateMax();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void updateMax()
|
||||||
|
{
|
||||||
|
if (Max == null)
|
||||||
|
{
|
||||||
|
slash.FadeOut(transition_duration);
|
||||||
|
maxText.FadeOut(transition_duration);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
slash.FadeIn(transition_duration);
|
||||||
|
maxText.Text = Max.ToString();
|
||||||
|
maxText.FadeIn(transition_duration);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -92,6 +92,6 @@ namespace osu.Game.Screens.Play
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private string formatTime(TimeSpan timeSpan) => $"{(timeSpan < TimeSpan.Zero ? "-" : "")}{timeSpan.Duration().TotalMinutes:N0}:{timeSpan.Duration().Seconds:D2}";
|
private string formatTime(TimeSpan timeSpan) => $"{(timeSpan < TimeSpan.Zero ? "-" : "")}{Math.Floor(timeSpan.Duration().TotalMinutes)}:{timeSpan.Duration().Seconds:D2}";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user