// Copyright (c) 2007-2017 ppy Pty Ltd . // 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 { 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(); } } }