mirror of
https://github.com/ppy/osu.git
synced 2024-12-05 02:53:21 +08:00
fix object density
This commit is contained in:
parent
981653a55e
commit
5a8638fab9
@ -37,7 +37,9 @@ namespace osu.Game.Rulesets.Taiko.Difficulty.Evaluators
|
||||
/// <returns>The calculated object density.</returns>
|
||||
public static double CalculateObjectDensity(TaikoDifficultyHitObject noteObject)
|
||||
{
|
||||
return 50 * DifficultyCalculationUtils.Logistic(noteObject.DeltaTime, 200, 1.0 / 30);
|
||||
double objectDensity = 50 * DifficultyCalculationUtils.Logistic(noteObject.DeltaTime, 200, 1.0 / 300);
|
||||
|
||||
return 1 - DifficultyCalculationUtils.Logistic(noteObject.EffectiveBPM, objectDensity, 1.0 / 240);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -38,7 +38,7 @@ namespace osu.Game.Rulesets.Taiko.Difficulty.Skills
|
||||
return 0.0;
|
||||
}
|
||||
|
||||
ObjectDensity = ReadingEvaluator.CalculateObjectDensity(taikoObject);
|
||||
ObjectDensity = ReadingEvaluator.CalculateObjectDensity(taikoObject) * 10;
|
||||
|
||||
currentStrain *= StrainDecayBase;
|
||||
currentStrain += ReadingEvaluator.EvaluateDifficultyOf(taikoObject) * SkillMultiplier;
|
||||
|
Loading…
Reference in New Issue
Block a user