mirror of
https://github.com/osukey/osukey.git
synced 2025-05-29 09:27:18 +09:00
Revert "Modify catcher autoplay test pattern to see more variety movement"
I found `TestSceneHyperDash` is useful for visual inspection of hyper dash trails. This reverts commit 0fbe950a
This commit is contained in:
parent
0fbe950a3c
commit
d9d9db6f62
@ -27,9 +27,9 @@ namespace osu.Game.Rulesets.Catch.Tests
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
for (int i = 0; i < 12; i++)
|
for (int i = 0; i < 100; i++)
|
||||||
{
|
{
|
||||||
float width = (i + 1) / 20f * CatchPlayfield.WIDTH;
|
float width = (i % 10 + 1) / 20f * CatchPlayfield.WIDTH;
|
||||||
|
|
||||||
beatmap.HitObjects.Add(new JuiceStream
|
beatmap.HitObjects.Add(new JuiceStream
|
||||||
{
|
{
|
||||||
@ -39,8 +39,8 @@ namespace osu.Game.Rulesets.Catch.Tests
|
|||||||
Vector2.Zero,
|
Vector2.Zero,
|
||||||
new Vector2(width, 0)
|
new Vector2(width, 0)
|
||||||
}),
|
}),
|
||||||
StartTime = i * 1000,
|
StartTime = i * 2000,
|
||||||
NewCombo = i % 5 == 0,
|
NewCombo = i % 8 == 0,
|
||||||
Samples = new List<HitSampleInfo>(new[]
|
Samples = new List<HitSampleInfo>(new[]
|
||||||
{
|
{
|
||||||
new HitSampleInfo(HitSampleInfo.HIT_NORMAL, "normal", volume: 100)
|
new HitSampleInfo(HitSampleInfo.HIT_NORMAL, "normal", volume: 100)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user