2019-01-24 08:43:03 +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.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2017-05-30 08:02:04 +00:00
|
|
|
using osu.Framework.Allocation;
|
2022-11-02 04:55:01 +00:00
|
|
|
using osu.Framework.Graphics;
|
2017-05-30 08:02:04 +00:00
|
|
|
using osu.Game.Graphics;
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2022-11-02 04:55:01 +00:00
|
|
|
using osu.Game.Overlays.Settings;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2018-01-13 19:25:09 +00:00
|
|
|
namespace osu.Game.Screens.Play.PlayerSettings
|
2017-05-30 08:02:04 +00:00
|
|
|
{
|
2022-11-02 04:55:01 +00:00
|
|
|
public partial class PlayerCheckbox : SettingsCheckbox
|
2017-05-30 08:02:04 +00:00
|
|
|
{
|
2022-11-02 04:55:01 +00:00
|
|
|
protected override Drawable CreateControl() => new PlayerCheckboxControl();
|
|
|
|
|
|
|
|
public partial class PlayerCheckboxControl : OsuCheckbox
|
2017-05-30 08:02:04 +00:00
|
|
|
{
|
2022-11-02 04:55:01 +00:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
{
|
|
|
|
Nub.AccentColour = colours.Yellow;
|
|
|
|
Nub.GlowingAccentColour = colours.YellowLighter;
|
|
|
|
Nub.GlowColour = colours.YellowDark;
|
|
|
|
}
|
2017-05-30 08:02:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|