1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:57:39 +08:00
This commit is contained in:
Dean Herbert 2017-11-28 18:42:50 +09:00
parent 5ae9b4c791
commit b11de50df2
2 changed files with 1 additions and 6 deletions

View File

@ -20,7 +20,7 @@ namespace osu.Game.Rulesets.Catch.Tests
var beatmap = new Beatmap();
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 });
beatmap.HitObjects.Add(new Fruit { X = 0.5f + i / 2048f * (i % 10 - 5), StartTime = i * 100, NewCombo = i % 8 == 0 });
return beatmap;
}

View File

@ -51,11 +51,6 @@ namespace osu.Game.Rulesets.Catch.UI
};
}
protected override void Update()
{
base.Update();
}
public bool CheckIfWeCanCatch(CatchHitObject obj) => catcherArea.CanCatch(obj);
public override void Add(DrawableHitObject h)