1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 22:47:20 +08:00

27 lines
824 B
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-12-06 18:56:20 +09:00
2017-03-28 21:26:20 +09:00
using osu.Framework.Graphics;
2017-04-18 16:05:58 +09:00
using osu.Game.Rulesets.Objects.Drawables;
using osu.Game.Rulesets.Osu.Judgements;
using OpenTK;
2017-04-18 16:05:58 +09:00
using osu.Game.Rulesets.Judgements;
2017-04-18 16:05:58 +09:00
namespace osu.Game.Rulesets.Osu.Objects.Drawables
{
2017-09-06 18:05:51 +09:00
public class DrawableOsuJudgement : DrawableJudgement
{
public DrawableOsuJudgement(OsuJudgement judgement)
: base(judgement)
{
}
protected override void LoadComplete()
{
if (Judgement.Result != HitResult.Miss)
2017-07-22 20:50:25 +02:00
JudgementText.TransformSpacingTo(new Vector2(14, 0), 1800, Easing.OutQuint);
base.LoadComplete();
}
}
}