1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 09:32:55 +08:00

Fade background

This commit is contained in:
smoogipoo 2020-06-18 22:27:10 +09:00
parent ecdfcb1955
commit 53f507f51a

View File

@ -219,6 +219,8 @@ namespace osu.Game.Screens.Ranking
});
}
}
Background.FadeTo(0.5f, 150);
}
else
{
@ -234,6 +236,8 @@ namespace osu.Game.Screens.Ranking
panel.MoveTo(new Vector2(scorePanelList.CurrentScrollPosition + StatisticsPanel.SIDE_PADDING, panel.GetTrackingPosition().Y), 150, Easing.OutQuint);
}
}
Background.FadeTo(0.1f, 150);
}
}
}