mirror of
https://github.com/ppy/osu.git
synced 2024-12-13 08:32:57 +08:00
Reverted changes
This commit is contained in:
parent
ca9fe9f240
commit
18fe37bb22
@ -108,14 +108,14 @@ namespace osu.Game.Rulesets.Catch.Tests
|
|||||||
float halfWidth = Catcher.CalculateCatchWidth(new BeatmapDifficulty { CircleSize = 0 }) / 2;
|
float halfWidth = Catcher.CalculateCatchWidth(new BeatmapDifficulty { CircleSize = 0 }) / 2;
|
||||||
AddStep("catch fruit", () =>
|
AddStep("catch fruit", () =>
|
||||||
{
|
{
|
||||||
attemptCatch(new Fruit { OriginalX = -halfWidth + 1 });
|
attemptCatch(new Fruit { X = -halfWidth + 1 });
|
||||||
attemptCatch(new Fruit { OriginalX = halfWidth - 1 });
|
attemptCatch(new Fruit { X = halfWidth - 1 });
|
||||||
});
|
});
|
||||||
checkPlate(2);
|
checkPlate(2);
|
||||||
AddStep("miss fruit", () =>
|
AddStep("miss fruit", () =>
|
||||||
{
|
{
|
||||||
attemptCatch(new Fruit { OriginalX = -halfWidth - 1 });
|
attemptCatch(new Fruit { X = -halfWidth - 1 });
|
||||||
attemptCatch(new Fruit { OriginalX = halfWidth + 1 });
|
attemptCatch(new Fruit { X = halfWidth + 1 });
|
||||||
});
|
});
|
||||||
checkPlate(2);
|
checkPlate(2);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user