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