Actually consume ReplacesBackground

This commit is contained in:
Dean Herbert 2018-02-19 12:33:07 +09:00
parent 21b641b302
commit e0faf14a3e
1 changed files with 1 additions and 1 deletions

View File

@ -387,7 +387,7 @@ private void updateBackgroundElements()
.FadeTo(storyboardVisible && opacity > 0 ? 1 : 0, duration, Easing.OutQuint);
(Background as BackgroundScreenBeatmap)?.BlurTo(new Vector2((float)blurLevel.Value * 25), duration, Easing.OutQuint);
Background?.FadeTo(!storyboardVisible || beatmap.Background == null ? opacity : 0, duration, Easing.OutQuint);
Background?.FadeTo(beatmap.Background != null && (!storyboardVisible || !beatmap.Storyboard.ReplacesBackground) ? opacity : 0, duration, Easing.OutQuint);
}
private void fadeOut()