Make mania hit explosions not stick around when rewinding

Fixes #1461.
This commit is contained in:
smoogipoo 2017-11-04 00:57:10 +09:00
parent 6fba6eddbf
commit 15f69dff81

View File

@ -57,8 +57,10 @@ namespace osu.Game.Rulesets.Mania.UI
{
base.LoadComplete();
this.ScaleTo(2f, 600, Easing.OutQuint).FadeOut(500).Expire();
this.ScaleTo(2f, 600, Easing.OutQuint).FadeOut(500);
inner.FadeOut(250);
Expire(true);
}
}
}