mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 06:36:31 +09:00
Add drawable Hits/StrongHits.
This commit is contained in:
@ -6,6 +6,7 @@ using osu.Framework.Screens.Testing;
|
||||
using osu.Game.Modes.Objects.Drawables;
|
||||
using osu.Game.Modes.Taiko.Judgements;
|
||||
using osu.Game.Modes.Taiko.Objects;
|
||||
using osu.Game.Modes.Taiko.Objects.Drawable;
|
||||
using osu.Game.Modes.Taiko.UI;
|
||||
|
||||
namespace osu.Desktop.VisualTests.Tests
|
||||
@ -22,6 +23,15 @@ namespace osu.Desktop.VisualTests.Tests
|
||||
|
||||
AddButton("Hit!", addHitJudgement);
|
||||
AddButton("Miss :(", addMissJudgement);
|
||||
AddButton("Centre", () =>
|
||||
{
|
||||
playfield.Add(new DrawableCentreHit(new Hit
|
||||
{
|
||||
StartTime = Time.Current + 1000,
|
||||
PreEmpt = 1000,
|
||||
IsStrong = false
|
||||
}));
|
||||
});
|
||||
|
||||
Add(playfield = new TaikoPlayfield
|
||||
{
|
||||
|
Reference in New Issue
Block a user