1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 09:27:29 +08:00

Limit catching towards the centre of the plate (to emulate actual gameplay)

This commit is contained in:
Dean Herbert 2021-04-22 17:47:03 +09:00
parent 2203552e9e
commit bdf07ad59a

View File

@ -52,7 +52,7 @@ namespace osu.Game.Rulesets.Catch.Tests
{
attemptCatch(new Fruit
{
X = (RNG.NextSingle() - 0.5f) * Catcher.CalculateCatchWidth(beatmapDifficulty),
X = (RNG.NextSingle() - 0.5f) * Catcher.CalculateCatchWidth(beatmapDifficulty) * 0.6f,
});
if (count-- == 0)