mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 07:07:45 +08:00
Add bar line visual check in taiko playfield test
Add a step checking alignment of a centre and a bar line in taiko playfield. Purely visual test without asserts.
This commit is contained in:
parent
56b460365b
commit
09864d7f0e
@ -53,6 +53,11 @@ namespace osu.Game.Rulesets.Taiko.Tests
|
|||||||
AddStep("Strong Rim", () => addRimHit(true));
|
AddStep("Strong Rim", () => addRimHit(true));
|
||||||
AddStep("Add bar line", () => addBarLine(false));
|
AddStep("Add bar line", () => addBarLine(false));
|
||||||
AddStep("Add major bar line", () => addBarLine(true));
|
AddStep("Add major bar line", () => addBarLine(true));
|
||||||
|
AddStep("Add centre w/ bar line", () =>
|
||||||
|
{
|
||||||
|
addCentreHit(false);
|
||||||
|
addBarLine(true);
|
||||||
|
});
|
||||||
AddStep("Height test 1", () => changePlayfieldSize(1));
|
AddStep("Height test 1", () => changePlayfieldSize(1));
|
||||||
AddStep("Height test 2", () => changePlayfieldSize(2));
|
AddStep("Height test 2", () => changePlayfieldSize(2));
|
||||||
AddStep("Height test 3", () => changePlayfieldSize(3));
|
AddStep("Height test 3", () => changePlayfieldSize(3));
|
||||||
|
Loading…
Reference in New Issue
Block a user