2017-02-07 13:59:30 +09:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-12-06 18:56:20 +09:00
|
|
|
|
|
2016-11-10 17:40:42 -05:00
|
|
|
|
using osu.Framework.Allocation;
|
2016-11-30 09:08:11 -05:00
|
|
|
|
using osu.Framework.Audio;
|
2016-11-08 22:38:40 -05:00
|
|
|
|
using osu.Framework.Graphics;
|
2016-11-03 00:26:49 -04:00
|
|
|
|
|
2017-05-15 10:55:29 +09:00
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Audio
|
2016-11-10 17:40:42 -05:00
|
|
|
|
{
|
2017-05-15 10:55:29 +09:00
|
|
|
|
public class VolumeSettings : SettingsSubsection
|
2016-11-10 17:40:42 -05:00
|
|
|
|
{
|
2016-11-08 22:38:40 -05:00
|
|
|
|
protected override string Header => "Volume";
|
|
|
|
|
|
2016-11-12 19:44:16 +09:00
|
|
|
|
[BackgroundDependencyLoader]
|
2017-05-02 19:40:30 +09:00
|
|
|
|
private void load(AudioManager audio)
|
2016-11-08 22:38:40 -05:00
|
|
|
|
{
|
2016-11-10 17:40:42 -05:00
|
|
|
|
Children = new Drawable[]
|
2016-11-08 22:38:40 -05:00
|
|
|
|
{
|
2017-05-15 10:55:29 +09:00
|
|
|
|
new SettingsSlider<double> { LabelText = "Master", Bindable = audio.Volume },
|
|
|
|
|
new SettingsSlider<double> { LabelText = "Effect", Bindable = audio.VolumeSample },
|
|
|
|
|
new SettingsSlider<double> { LabelText = "Music", Bindable = audio.VolumeTrack },
|
2016-11-10 17:40:42 -05:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-15 01:36:16 +08:00
|
|
|
|
}
|