Merge pull request #8349 from peppy/show-d-rank-badge

Show 'D' rank badge on accuracy circle
This commit is contained in:
Dan Balasescu 2020-03-19 12:20:33 +09:00 committed by GitHub
commit 3861a92422
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions

View File

@ -32,6 +32,16 @@ public class TestSceneAccuracyCircle : OsuTestScene
typeof(SmoothCircularProgress)
};
[Test]
public void TestLowDRank()
{
var score = createScore();
score.Accuracy = 0.2;
score.Rank = ScoreRank.D;
addCircleStep(score);
}
[Test]
public void TestDRank()
{

View File

@ -196,6 +196,7 @@ private void load()
new RankBadge(0.9f, ScoreRank.A),
new RankBadge(0.8f, ScoreRank.B),
new RankBadge(0.7f, ScoreRank.C),
new RankBadge(0.35f, ScoreRank.D),
}
},
rankText = new RankText(score.Rank)