2017-02-07 13:59:30 +09: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 18:56:20 +09:00
|
|
|
|
|
2017-02-25 13:12:39 +01:00
|
|
|
|
using osu.Framework.Graphics.Transforms;
|
2016-11-26 16:51:51 +09:00
|
|
|
|
using osu.Game.Modes.Objects.Drawables;
|
2017-03-15 19:23:42 +09:00
|
|
|
|
using osu.Game.Modes.Osu.Judgements;
|
2016-11-17 17:20:51 +09:00
|
|
|
|
using OpenTK;
|
2017-03-23 12:49:28 +09:00
|
|
|
|
using osu.Game.Modes.Judgements;
|
2016-11-17 17:20:51 +09:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Modes.Osu.Objects.Drawables
|
|
|
|
|
{
|
2017-03-23 19:00:18 +09:00
|
|
|
|
public class DrawableOsuJudgement : DrawableJudgement<OsuJudgement>
|
2016-11-17 17:20:51 +09:00
|
|
|
|
{
|
2017-03-23 19:00:18 +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)
|
|
|
|
|
JudgementText.TransformSpacingTo(new Vector2(14, 0), 1800, EasingTypes.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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|