1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 13:22:55 +08:00

Merge pull request #3403 from smoogipoo/results-auto-scaling

Scale the results screen score to keep it in view
This commit is contained in:
Dean Herbert 2018-09-10 18:40:49 +09:00 committed by GitHub
commit 591ce67e24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,6 +29,7 @@ namespace osu.Game.Screens.Ranking
{
public class ResultsPageScore : ResultsPage
{
private Container scoreContainer;
private ScoreCounter scoreCounter;
public ResultsPageScore(Score score, WorkingBeatmap beatmap) : base(score, beatmap) { }
@ -76,7 +77,7 @@ namespace osu.Game.Screens.Ranking
Size = new Vector2(150, 60),
Margin = new MarginPadding(20),
},
new Container
scoreContainer = new Container
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
@ -92,8 +93,8 @@ namespace osu.Game.Screens.Ranking
},
scoreCounter = new SlowScoreCounter(6)
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Colour = colours.PinkDarker,
Y = 10,
TextSize = 56,
@ -185,6 +186,13 @@ namespace osu.Game.Screens.Ranking
});
}
protected override void UpdateAfterChildren()
{
base.UpdateAfterChildren();
scoreCounter.Scale = new Vector2(Math.Min(1f, (scoreContainer.DrawWidth - 20) / scoreCounter.DrawWidth));
}
private class DrawableScoreStatistic : Container
{
private readonly KeyValuePair<HitResult, object> statistic;