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
|
|
|
|
|
2024-05-22 16:29:39 +08:00
|
|
|
|
using System.Numerics;
|
2018-01-13 22:25:09 +03:00
|
|
|
|
using osu.Framework.Allocation;
|
2017-05-30 17:02:04 +09:00
|
|
|
|
using osu.Framework.Graphics;
|
2018-01-13 22:25:09 +03:00
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2017-05-30 17:02:04 +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
|
|
|
|
{
|
2018-01-13 22:25:09 +03:00
|
|
|
|
public partial class PlayerSliderBar<T> : SettingsSlider<T>
|
2024-05-22 16:29:39 +08:00
|
|
|
|
where T : struct, INumber<T>, IMinMaxValue<T>
|
2017-05-30 17:02:04 +09:00
|
|
|
|
{
|
2023-02-02 17:24:45 +01:00
|
|
|
|
public RoundedSliderBar<T> Bar => (RoundedSliderBar<T>)Control;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2022-03-03 17:07:46 +09:00
|
|
|
|
protected override Drawable CreateControl() => new SliderBar();
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2023-02-02 17:24:45 +01:00
|
|
|
|
protected partial class SliderBar : RoundedSliderBar<T>
|
2017-05-30 17:02:04 +09:00
|
|
|
|
{
|
2022-03-03 17:07:46 +09:00
|
|
|
|
public SliderBar()
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-30 17:02:04 +09:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
|
|
|
|
AccentColour = colours.Yellow;
|
2023-01-26 15:01:27 +01:00
|
|
|
|
Nub.AccentColour = colours.Yellow;
|
|
|
|
|
Nub.GlowingAccentColour = colours.YellowLighter;
|
|
|
|
|
Nub.GlowColour = colours.YellowDark;
|
2017-05-30 17:02:04 +09:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|