Fix incorrect colour sizes and simplify alignment specification

This commit is contained in:
Dean Herbert
2019-08-30 18:35:06 +09:00
parent 54696eef39
commit 741bd0a5cf
3 changed files with 140 additions and 49 deletions

View File

@ -37,8 +37,8 @@ namespace osu.Game.Tests.Visual.Gameplay
AddRepeatStep("New random judgement", () => newJudgement(), 40);
AddRepeatStep("New max negative", () => newJudgement(-hitWindows.Meh), 20);
AddRepeatStep("New max positive", () => newJudgement(hitWindows.Meh), 20);
AddRepeatStep("New max negative", () => newJudgement(-hitWindows.HalfWindowFor(HitResult.Meh)), 20);
AddRepeatStep("New max positive", () => newJudgement(hitWindows.HalfWindowFor(HitResult.Meh)), 20);
AddStep("New fixed judgement (50ms)", () => newJudgement(50));
}