mirror of
https://github.com/ppy/osu.git
synced 2026-05-18 19:50:31 +08:00
26 lines
757 B
C#
26 lines
757 B
C#
using osu.Framework.Graphics;
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
using osu.Game.Rulesets.Shape.Judgements;
|
|
using OpenTK;
|
|
using osu.Game.Rulesets.Judgements;
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
namespace osu.Game.Rulesets.Shape.Objects.Drawables
|
|
{
|
|
public class DrawableShapeJudgement : DrawableJudgement
|
|
{
|
|
public DrawableShapeJudgement(Judgement judgement, DrawableHitObject judgedObject)
|
|
: base(judgement, judgedObject)
|
|
{
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
if (Judgement.Result != HitResult.Miss)
|
|
JudgementText.TransformSpacingTo(new Vector2(14, 0), 1800, Easing.OutQuint);
|
|
|
|
base.LoadComplete();
|
|
}
|
|
}
|
|
}
|