mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 14:32:55 +08:00
Fix base implementation of ComputeTotalScore
This commit is contained in:
parent
e1feeded12
commit
62d504af92
@ -297,13 +297,9 @@ namespace osu.Game.Rulesets.Scoring
|
|||||||
|
|
||||||
protected virtual double ComputeTotalScore(double comboProgress, double accuracyProgress, double bonusPortion)
|
protected virtual double ComputeTotalScore(double comboProgress, double accuracyProgress, double bonusPortion)
|
||||||
{
|
{
|
||||||
return
|
return 700000 * comboProgress +
|
||||||
(int)Math.Round
|
300000 * Math.Pow(Accuracy.Value, 10) * accuracyProgress +
|
||||||
((
|
bonusPortion;
|
||||||
700000 * comboProgress +
|
|
||||||
300000 * Math.Pow(Accuracy.Value, 10) * accuracyProgress +
|
|
||||||
bonusPortion
|
|
||||||
) * scoreMultiplier);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
Loading…
Reference in New Issue
Block a user