2017-02-07 12:59:30 +08:00
|
|
|
|
// 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 17:56:20 +08:00
|
|
|
|
|
2017-03-28 20:26:20 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Judgements;
|
2016-11-17 16:20:51 +08:00
|
|
|
|
using OpenTK;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
2016-11-17 16:20:51 +08:00
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects.Drawables
|
2016-11-17 16:20:51 +08:00
|
|
|
|
{
|
2017-03-23 18:00:18 +08:00
|
|
|
|
public class DrawableOsuJudgement : DrawableJudgement<OsuJudgement>
|
2016-11-17 16:20:51 +08:00
|
|
|
|
{
|
2017-03-23 18:00:18 +08:00
|
|
|
|
public DrawableOsuJudgement(OsuJudgement judgement) : base(judgement)
|
2016-11-17 16:20:51 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
2017-03-23 11:49:28 +08:00
|
|
|
|
if (Judgement.Result != HitResult.Miss)
|
|
|
|
|
JudgementText.TransformSpacingTo(new Vector2(14, 0), 1800, EasingTypes.OutQuint);
|
2016-12-06 20:14:38 +08:00
|
|
|
|
|
2017-03-23 17:56:22 +08:00
|
|
|
|
base.LoadComplete();
|
2016-11-17 16:20:51 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|