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
1 changed files with 3 additions and 1 deletions

View File

@ -57,8 +57,10 @@ protected override void LoadComplete()
{
base.LoadComplete();
this.ScaleTo(2f, 600, Easing.OutQuint).FadeOut(500).Expire();
this.ScaleTo(2f, 600, Easing.OutQuint).FadeOut(500);
inner.FadeOut(250);
Expire(true);
}
}
}