-
Currently getting an SS requires hitting all Perfects (MAX or flashing 300), which is extremely difficult given the frame perfect timing required. Stable also awards SS to scores that also has Great (yellow 300) hits, and I suggest lazer should follow suit. Example code: public override ScoreRank RankFromScore(double accuracy, IReadOnlyDictionary<HitResult, int> results)
{
if (results.Where(result => result.Key < HitResult.Great).All(result => result.Value == 0))
return ScoreRank.X;
return base.RankFromScore(accuracy, results);
} |
Beta Was this translation helpful? Give feedback.
Answered by
bdach
May 24, 2024
Replies: 1 comment
-
please read #24238 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
bdach
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
please read #24238