mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 18:42:56 +08:00
Fix backgrounds not properly being faded in song select
This commit is contained in:
parent
bb01948283
commit
f8d18285a8
@ -30,10 +30,6 @@ namespace osu.Game.Screens.Backgrounds
|
||||
|
||||
beatmap = value;
|
||||
|
||||
FadeContainer = CreateFadeContainer();
|
||||
InternalChild = FadeContainer;
|
||||
EnableUserDim.BindTo(FadeContainer.EnableUserDim);
|
||||
|
||||
Schedule(() =>
|
||||
{
|
||||
LoadComponentAsync(new BeatmapBackground(beatmap), b => Schedule(() =>
|
||||
@ -47,7 +43,7 @@ namespace osu.Game.Screens.Backgrounds
|
||||
Background.Expire();
|
||||
}
|
||||
b.Depth = newDepth;
|
||||
FadeContainer.Child = Background = b;
|
||||
FadeContainer.Add(Background = b);
|
||||
Background.BlurSigma = BlurTarget;
|
||||
FadeContainer.StoryboardReplacesBackground.BindTo(StoryboardReplacesBackground);
|
||||
}));
|
||||
@ -57,6 +53,9 @@ namespace osu.Game.Screens.Backgrounds
|
||||
|
||||
public BackgroundScreenBeatmap(WorkingBeatmap beatmap = null)
|
||||
{
|
||||
FadeContainer = CreateFadeContainer();
|
||||
InternalChild = FadeContainer;
|
||||
EnableUserDim.BindTo(FadeContainer.EnableUserDim);
|
||||
Beatmap = beatmap;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user