mirror of
https://github.com/ppy/osu.git
synced 2025-02-13 14:13:18 +08:00
Buff CS > 5
This commit is contained in:
parent
eaa3bce784
commit
b402981fc6
@ -52,7 +52,8 @@ namespace osu.Game.Rulesets.Catch.Difficulty
|
||||
using (var catcher = new CatcherArea.Catcher(beatmap.BeatmapInfo.BaseDifficulty))
|
||||
{
|
||||
halfCatchWidth = catcher.CatchWidth * 0.5f;
|
||||
halfCatchWidth *= 0.8f; // We're only using 80% of the catcher's width to simulate imperfect gameplay.
|
||||
// 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.
|
||||
}
|
||||
|
||||
CatchHitObject lastObject = null;
|
||||
|
Loading…
Reference in New Issue
Block a user