Simplify standardized scoring to BasePortion (raw scoring) + ComboPortion (highest combo)

This commit is contained in:
smoogipooo
2017-09-13 15:17:32 +09:00
parent 3619f7c1eb
commit ba3e44cd71
4 changed files with 18 additions and 21 deletions

View File

@ -55,8 +55,8 @@ namespace osu.Game.Rulesets.Taiko.Scoring
/// </summary>
public override bool HasFailed => Hits == MaxHits && Health.Value <= 0.5;
protected override double BasePortion => 0.8;
protected override double ComboPortion => 0.2;
protected override double AccuracyPortion => 0.8;
private double hpIncreaseTick;
private double hpIncreaseGreat;