2019-01-24 08:43:03 +00: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.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-07-14 16:18:12 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2020-11-16 08:23:02 +00:00
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
2021-09-02 07:31:43 +00:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2022-11-07 08:12:58 +00:00
|
|
|
|
using osuTK;
|
2022-11-07 07:31:06 +00:00
|
|
|
|
using DefaultJudgementPiece = osu.Game.Rulesets.Taiko.Skinning.Default.DefaultJudgementPiece;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-04-18 07:05:58 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Taiko.UI
|
2017-03-21 07:33:25 +00:00
|
|
|
|
{
|
2017-03-21 09:16:14 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Text that is shown as judgement when a hit object is hit or missed.
|
|
|
|
|
/// </summary>
|
2017-09-06 09:05:51 +00:00
|
|
|
|
public partial class DrawableTaikoJudgement : DrawableJudgement
|
2017-03-21 07:33:25 +00:00
|
|
|
|
{
|
2022-11-07 08:12:58 +00:00
|
|
|
|
public DrawableTaikoJudgement()
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre;
|
|
|
|
|
Origin = Anchor.Centre;
|
|
|
|
|
|
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
Size = Vector2.One;
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-07 07:31:06 +00:00
|
|
|
|
protected override Drawable CreateDefaultJudgement(HitResult result) => new DefaultJudgementPiece(result);
|
2017-03-21 07:33:25 +00:00
|
|
|
|
}
|
2017-12-30 20:23:18 +00:00
|
|
|
|
}
|