mirror of
https://github.com/osukey/osukey.git
synced 2025-08-06 08:03:52 +09:00
Merge pull request #2296 from smoogipoo/fix-background-fade
Fix beatmap background fade not being updated on retry
This commit is contained in:
@ -46,6 +46,12 @@ namespace osu.Game.Screens.Play
|
|||||||
UpdateBackgroundElements();
|
UpdateBackgroundElements();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected override void OnResuming(Screen last)
|
||||||
|
{
|
||||||
|
base.OnResuming(last);
|
||||||
|
UpdateBackgroundElements();
|
||||||
|
}
|
||||||
|
|
||||||
protected virtual void UpdateBackgroundElements()
|
protected virtual void UpdateBackgroundElements()
|
||||||
{
|
{
|
||||||
if (!IsCurrentScreen) return;
|
if (!IsCurrentScreen) return;
|
||||||
|
Reference in New Issue
Block a user