mirror of
https://github.com/ppy/osu.git
synced 2025-01-19 10:52:55 +08:00
Scoring : Use square-root of combo
This commit is contained in:
parent
99d4d2be37
commit
3c76cb2fb0
@ -293,7 +293,7 @@ namespace osu.Game.Rulesets.Scoring
|
|||||||
|
|
||||||
protected virtual double GetBonusScoreChange(JudgementResult result) => Judgement.ToNumericResult(result.Type);
|
protected virtual double GetBonusScoreChange(JudgementResult result) => Judgement.ToNumericResult(result.Type);
|
||||||
|
|
||||||
protected virtual double GetComboScoreChange(JudgementResult result) => Judgement.ToNumericResult(result.Type) * (1 + result.ComboAfterJudgement / 10d);
|
protected virtual double GetComboScoreChange(JudgementResult result) => Judgement.ToNumericResult(result.Type) * Math.Pow(result.ComboAfterJudgement, 0.5);
|
||||||
|
|
||||||
protected virtual void ApplyScoreChange(JudgementResult result)
|
protected virtual void ApplyScoreChange(JudgementResult result)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user