2018-01-05 20:21:19 +09:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-07 13:59:30 +09:00
|
|
|
|
// 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;
|
2016-11-17 17:20:51 +09:00
|
|
|
|
using OpenTK;
|
2017-04-18 16:05:58 +09:00
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
2017-12-30 21:23:18 +01:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2016-11-17 17:20:51 +09:00
|
|
|
|
|
2017-04-18 16:05:58 +09:00
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects.Drawables
|
2016-11-17 17:20:51 +09:00
|
|
|
|
{
|
2017-09-06 18:05:51 +09:00
|
|
|
|
public class DrawableOsuJudgement : DrawableJudgement
|
2016-11-17 17:20:51 +09:00
|
|
|
|
{
|
2017-09-06 17:02:13 +09:00
|
|
|
|
public DrawableOsuJudgement(OsuJudgement judgement)
|
|
|
|
|
: base(judgement)
|
2016-11-17 17:20:51 +09:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
2017-03-23 12:49:28 +09:00
|
|
|
|
if (Judgement.Result != HitResult.Miss)
|
2017-07-22 20:50:25 +02:00
|
|
|
|
JudgementText.TransformSpacingTo(new Vector2(14, 0), 1800, Easing.OutQuint);
|
2016-12-06 21:14:38 +09:00
|
|
|
|
|
2017-03-23 18:56:22 +09:00
|
|
|
|
base.LoadComplete();
|
2016-11-17 17:20:51 +09:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-12-30 21:23:18 +01:00
|
|
|
|
}
|