1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 23:27:24 +08:00
osu-lazer/osu.Game/Overlays/Settings/Sections/Audio/VolumeSettings.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1.9 KiB
C#
Raw Normal View History

// 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 17:19:50 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
2016-11-11 06:40:42 +08:00
using osu.Framework.Allocation;
using osu.Framework.Audio;
2016-11-09 11:38:40 +08:00
using osu.Framework.Graphics;
using osu.Framework.Localisation;
using osu.Game.Configuration;
2021-08-11 17:10:08 +08:00
using osu.Game.Localisation;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.Settings.Sections.Audio
2016-11-11 06:40:42 +08:00
{
public class VolumeSettings : SettingsSubsection
2016-11-11 06:40:42 +08:00
{
2021-08-11 17:10:08 +08:00
protected override LocalisableString Header => AudioSettingsStrings.VolumeHeader;
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader]
private void load(AudioManager audio, OsuConfigManager config)
2016-11-09 11:38:40 +08:00
{
2016-11-11 06:40:42 +08:00
Children = new Drawable[]
2016-11-09 11:38:40 +08:00
{
2020-01-28 18:04:00 +08:00
new SettingsSlider<double>
{
2021-08-11 17:10:08 +08:00
LabelText = AudioSettingsStrings.MasterVolume,
Current = audio.Volume,
2020-01-28 18:04:00 +08:00
KeyboardStep = 0.01f,
DisplayAsPercentage = true
},
new SettingsSlider<double>
{
2021-08-11 17:10:08 +08:00
LabelText = AudioSettingsStrings.MasterVolumeInactive,
Current = config.GetBindable<double>(OsuSetting.VolumeInactive),
2020-01-28 18:04:00 +08:00
KeyboardStep = 0.01f,
DisplayAsPercentage = true
},
new SettingsSlider<double>
{
2021-08-11 17:10:08 +08:00
LabelText = AudioSettingsStrings.EffectVolume,
Current = audio.VolumeSample,
2020-01-28 18:04:00 +08:00
KeyboardStep = 0.01f,
DisplayAsPercentage = true
},
new SettingsSlider<double>
{
2021-08-11 17:10:08 +08:00
LabelText = AudioSettingsStrings.MusicVolume,
Current = audio.VolumeTrack,
2020-01-28 18:04:00 +08:00
KeyboardStep = 0.01f,
DisplayAsPercentage = true
},
2016-11-11 06:40:42 +08:00
};
}
}
2016-11-15 01:36:16 +08:00
}