mirror of
https://github.com/osukey/osukey.git
synced 2025-05-04 21:27:22 +09:00
31 lines
935 B
C#
31 lines
935 B
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Graphics.Transforms;
|
|
using osu.Game.Modes.Objects.Drawables;
|
|
using osu.Game.Modes.Osu.Judgements;
|
|
using OpenTK;
|
|
using osu.Game.Modes.Judgements;
|
|
|
|
namespace osu.Game.Modes.Osu.Objects.Drawables
|
|
{
|
|
public class DrawableOsuJudgementInfo : DrawableJudgementInfo<OsuJudgementInfo>
|
|
{
|
|
public DrawableOsuJudgementInfo(OsuJudgementInfo judgement) : base(judgement)
|
|
{
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
if (Judgement.Result != HitResult.Miss)
|
|
{
|
|
JudgementText.TransformSpacingTo(new Vector2(14, 0), 1800, EasingTypes.OutQuint);
|
|
FadeOut(500);
|
|
}
|
|
|
|
Expire();
|
|
}
|
|
}
|
|
} |