mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:07:25 +08:00
32 lines
1.1 KiB
C#
32 lines
1.1 KiB
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Beatmaps.Drawables;
|
|
|
|
namespace osu.Game.Screens.Multi.Components
|
|
{
|
|
public class MultiplayerBackgroundSprite : MultiplayerComposite
|
|
{
|
|
private readonly BeatmapSetCoverType beatmapSetCoverType;
|
|
|
|
public MultiplayerBackgroundSprite(BeatmapSetCoverType beatmapSetCoverType = BeatmapSetCoverType.Cover)
|
|
{
|
|
this.beatmapSetCoverType = beatmapSetCoverType;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
UpdateableBeatmapBackgroundSprite sprite;
|
|
|
|
InternalChild = sprite = CreateBackgroundSprite();
|
|
|
|
CurrentItem.BindValueChanged(item => sprite.Beatmap.Value = item.NewValue?.Beatmap, true);
|
|
}
|
|
|
|
protected virtual UpdateableBeatmapBackgroundSprite CreateBackgroundSprite() => new UpdateableBeatmapBackgroundSprite(beatmapSetCoverType) { RelativeSizeAxes = Axes.Both };
|
|
}
|
|
}
|