mirror of
https://github.com/ppy/osu.git
synced 2025-02-06 04:53:06 +08:00
Fix regression of osu! judgement animation.
This commit is contained in:
parent
6e42a75fca
commit
93915ba527
@ -17,15 +17,10 @@ namespace osu.Game.Modes.Osu.Objects.Drawables
|
|||||||
|
|
||||||
protected override void LoadComplete()
|
protected override void LoadComplete()
|
||||||
{
|
{
|
||||||
base.LoadComplete();
|
|
||||||
|
|
||||||
if (Judgement.Result != HitResult.Miss)
|
if (Judgement.Result != HitResult.Miss)
|
||||||
{
|
|
||||||
JudgementText.TransformSpacingTo(new Vector2(14, 0), 1800, EasingTypes.OutQuint);
|
JudgementText.TransformSpacingTo(new Vector2(14, 0), 1800, EasingTypes.OutQuint);
|
||||||
FadeOut(500);
|
|
||||||
}
|
|
||||||
|
|
||||||
Expire();
|
base.LoadComplete();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -83,8 +83,8 @@ namespace osu.Game.Modes.Judgements
|
|||||||
ScaleTo(0.9f);
|
ScaleTo(0.9f);
|
||||||
ScaleTo(1, 500, EasingTypes.OutElastic);
|
ScaleTo(1, 500, EasingTypes.OutElastic);
|
||||||
|
|
||||||
Delay(250);
|
Delay(100);
|
||||||
FadeOut(250, EasingTypes.OutQuint);
|
FadeOut(400);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user