mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:47:52 +08:00
61 lines
1.7 KiB
C#
61 lines
1.7 KiB
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Rulesets.Judgements;
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
namespace osu.Game.Rulesets.Mania.UI
|
|
{
|
|
public class DrawableManiaJudgement : DrawableJudgement
|
|
{
|
|
public DrawableManiaJudgement(JudgementResult result, DrawableHitObject judgedObject)
|
|
: base(result, judgedObject)
|
|
{
|
|
}
|
|
|
|
public DrawableManiaJudgement()
|
|
{
|
|
}
|
|
|
|
protected override Drawable CreateDefaultJudgement(HitResult result) => new DefaultManiaJudgementPiece(result);
|
|
|
|
private class DefaultManiaJudgementPiece : DefaultJudgementPiece
|
|
{
|
|
public DefaultManiaJudgementPiece(HitResult result)
|
|
: base(result)
|
|
{
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
JudgementText.Font = JudgementText.Font.With(size: 25);
|
|
}
|
|
|
|
public override void PlayAnimation()
|
|
{
|
|
base.PlayAnimation();
|
|
|
|
switch (Result)
|
|
{
|
|
case HitResult.None:
|
|
case HitResult.Miss:
|
|
break;
|
|
|
|
default:
|
|
this.ScaleTo(0.8f);
|
|
this.ScaleTo(1, 250, Easing.OutElastic);
|
|
|
|
this.Delay(50)
|
|
.ScaleTo(0.75f, 250)
|
|
.FadeOut(200);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|