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

Make CatchStacker testcase more useful

This commit is contained in:
Dean Herbert 2017-11-28 18:18:39 +09:00
parent b517523f4a
commit 5ae9b4c791

View File

@ -19,8 +19,8 @@ namespace osu.Game.Rulesets.Catch.Tests
{
var beatmap = new Beatmap();
for (int i = 0; i < 256; i++)
beatmap.HitObjects.Add(new Fruit { X = 0.5f, StartTime = i * 100, NewCombo = i % 8 == 0 });
for (int i = 0; i < 512; i++)
beatmap.HitObjects.Add(new Fruit { X = 0.5f + (i / 2048f * ((i % 10) - 5)), StartTime = i * 100, NewCombo = i % 8 == 0 });
return beatmap;
}