Embed behaviour into UserCoverBackground

This commit is contained in:
smoogipoo
2020-07-28 20:50:55 +09:00
parent 54d2f2c8cd
commit 42e88c53d7
5 changed files with 22 additions and 18 deletions

View File

@ -146,15 +146,12 @@ namespace osu.Game.Screens.Ranking
Children = new[]
{
middleLayerBackground = new Box { RelativeSizeAxes = Axes.Both },
new DelayedLoadUnloadWrapper(() => new UserCoverBackground
new UserCoverBackground
{
RelativeSizeAxes = Axes.Both,
User = Score.User,
Colour = ColourInfo.GradientVertical(Color4.White.Opacity(0.5f), Color4Extensions.FromHex("#444").Opacity(0))
}, 300, 5000)
{
RelativeSizeAxes = Axes.Both
},
}
}
},
middleLayerContentContainer = new Container { RelativeSizeAxes = Axes.Both }