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