1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-31 05:32:57 +08:00

Add style selection to playlists screen

This commit is contained in:
Dan Balasescu 2024-12-24 19:28:09 +09:00
parent 971ccb6a4e
commit ac738f109a
No known key found for this signature in database

View File

@ -170,6 +170,13 @@ namespace osu.Game.Screens.OnlinePlay.Playlists
Content = new[] Content = new[]
{ {
new[] new[]
{
new Container
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Margin = new MarginPadding { Bottom = 10 },
Children = new[]
{ {
UserModsSection = new FillFlowContainer UserModsSection = new FillFlowContainer
{ {
@ -206,6 +213,23 @@ namespace osu.Game.Screens.OnlinePlay.Playlists
} }
} }
}, },
UserDifficultySection = new FillFlowContainer
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Alpha = 0,
Children = new Drawable[]
{
new OverlinedHeader("Difficulty"),
UserStyleDisplayContainer = new Container<DrawableRoomPlaylistItem>
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y
}
}
},
}
},
}, },
new Drawable[] new Drawable[]
{ {