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

28 lines
816 B
C#
Raw Normal View History

2018-01-05 20:21:19 +09:00
// Copyright (c) 2007-2018 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.Osu.Judgements;
using OpenTK;
2017-04-18 16:05:58 +09:00
using osu.Game.Rulesets.Judgements;
using osu.Game.Rulesets.Scoring;
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();
}
}
}