Don't play logo select sample when actions are playing their own

This commit is contained in:
Dean Herbert
2017-11-25 23:29:08 +09:00
parent 07d6a70028
commit ae48b85827
3 changed files with 17 additions and 9 deletions

View File

@ -332,7 +332,11 @@ namespace osu.Game.Screens.Select
logo.FadeIn(logo_transition, Easing.OutQuint);
logo.ScaleTo(0.4f, logo_transition, Easing.OutQuint);
logo.Action = () => carouselRaisedStart();
logo.Action = () =>
{
carouselRaisedStart();
return true;
};
}
protected override void LogoExiting(OsuLogo logo)