2021-04-18 18:16:17 +00:00
|
|
|
// 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.Framework.Localisation;
|
|
|
|
using osu.Game.Graphics.UserInterfaceV2;
|
2022-08-10 17:53:20 +00:00
|
|
|
using osu.Game.Localisation;
|
2021-04-18 18:16:17 +00:00
|
|
|
|
|
|
|
namespace osu.Game.Screens.Edit.Setup
|
|
|
|
{
|
|
|
|
internal partial class ColoursSection : SetupSection
|
|
|
|
{
|
2022-08-15 15:14:16 +00:00
|
|
|
public override LocalisableString Title => EditorSetupStrings.ColoursHeader;
|
2021-04-18 18:16:17 +00:00
|
|
|
|
2023-01-13 23:24:28 +00:00
|
|
|
private LabelledColourPalette comboColours = null!;
|
2021-04-18 18:16:17 +00:00
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
comboColours = new LabelledColourPalette
|
|
|
|
{
|
2022-08-18 17:17:05 +00:00
|
|
|
Label = EditorSetupStrings.HitCircleSliderCombos,
|
2021-06-08 15:14:26 +00:00
|
|
|
FixedLabelWidth = LABEL_WIDTH,
|
2022-08-16 05:51:54 +00:00
|
|
|
ColourNamePrefix = EditorSetupStrings.ComboColourPrefix
|
|
|
|
}
|
2021-04-18 18:16:17 +00:00
|
|
|
};
|
|
|
|
|
2021-08-15 14:32:26 +00:00
|
|
|
if (Beatmap.BeatmapSkin != null)
|
|
|
|
comboColours.Colours.BindTo(Beatmap.BeatmapSkin.ComboColours);
|
2021-04-18 18:16:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|