2019-01-24 16:43:03 +08:00
|
|
|
// 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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.UI
|
|
|
|
{
|
2018-05-22 04:24:10 +08:00
|
|
|
public class DrawableManiaJudgement : DrawableJudgement
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2018-08-02 19:36:54 +08:00
|
|
|
public DrawableManiaJudgement(JudgementResult result, DrawableHitObject judgedObject)
|
|
|
|
: base(result, judgedObject)
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
|
|
|
if (JudgementText != null)
|
2019-02-20 18:32:30 +08:00
|
|
|
JudgementText.Font = JudgementText.Font.With(size: 25);
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
|
2019-03-12 18:23:24 +08:00
|
|
|
protected override double FadeInDuration => 50;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2019-03-12 18:41:33 +08:00
|
|
|
protected override void ApplyHitAnimations()
|
2019-03-12 18:23:24 +08:00
|
|
|
{
|
2019-03-12 18:41:33 +08:00
|
|
|
JudgementBody.ScaleTo(0.8f);
|
|
|
|
JudgementBody.ScaleTo(1, 250, Easing.OutElastic);
|
2019-03-12 18:23:24 +08:00
|
|
|
|
2019-03-12 18:41:33 +08:00
|
|
|
JudgementBody.Delay(FadeInDuration).ScaleTo(0.75f, 250);
|
|
|
|
this.Delay(FadeInDuration).FadeOut(200);
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|