1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 06:07:25 +08:00
osu-lazer/osu.Game.Rulesets.Osu.Tests/TestSceneHitCircleLongCombo.cs

41 lines
1.1 KiB
C#
Raw Normal View History

2019-02-15 20:03:55 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using NUnit.Framework;
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Osu.Objects;
using osu.Game.Tests.Visual;
2019-02-15 20:03:55 +08:00
using osuTK;
namespace osu.Game.Rulesets.Osu.Tests
{
[TestFixture]
public class TestSceneHitCircleLongCombo : PlayerTestScene
2019-02-15 20:03:55 +08:00
{
public TestSceneHitCircleLongCombo()
2019-02-15 20:03:55 +08:00
: base(new OsuRuleset())
{
}
protected override IBeatmap CreateBeatmap(RulesetInfo ruleset)
2019-02-15 20:03:55 +08:00
{
var beatmap = new Beatmap
{
BeatmapInfo = new BeatmapInfo
{
BaseDifficulty = new BeatmapDifficulty { CircleSize = 6 },
Ruleset = ruleset
2019-02-15 20:03:55 +08:00
}
};
for (int i = 0; i < 512; i++)
2019-11-11 19:53:22 +08:00
{
if (i % 32 < 20)
beatmap.HitObjects.Add(new HitCircle { Position = new Vector2(256, 192), StartTime = i * 100 });
2019-11-11 19:53:22 +08:00
}
2019-02-15 20:03:55 +08:00
return beatmap;
}
}
}