Adjust circle-size bonus point

This commit is contained in:
smoogipoo 2019-04-03 11:39:13 +09:00
parent 5566c4881a
commit 2824a32db6
1 changed files with 2 additions and 2 deletions

View File

@ -52,8 +52,8 @@ protected override IEnumerable<DifficultyHitObject> CreateDifficultyHitObjects(I
using (var catcher = new CatcherArea.Catcher(beatmap.BeatmapInfo.BaseDifficulty))
{
halfCatchWidth = catcher.CatchWidth * 0.5f;
// We're only using 80% of the catcher's width to simulate imperfect gameplay.
halfCatchWidth *= Math.Min(1.05f - (0.05f * beatmap.BeatmapInfo.BaseDifficulty.CircleSize), 0.8f); // Reduce the catcher's width further at circle sizes above 5.
// We're only using 80% of the catcher's width to simulate imperfect gameplay, reduced further at circle sizes above 5.5
halfCatchWidth *= Math.Min(1.075f - (0.05f * beatmap.BeatmapInfo.BaseDifficulty.CircleSize), 0.8f);
}
CatchHitObject lastObject = null;