osu/osu.Game/Overlays/Settings/Sections/Audio/VolumeSettings.cs

26 lines
907 B
C#
Raw Normal View History

// 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 09:56:20 +00:00
2016-11-10 22:40:42 +00:00
using osu.Framework.Allocation;
using osu.Framework.Audio;
2016-11-09 03:38:40 +00:00
using osu.Framework.Graphics;
2016-11-03 04:26:49 +00:00
namespace osu.Game.Overlays.Settings.Sections.Audio
2016-11-10 22:40:42 +00:00
{
public class VolumeSettings : SettingsSubsection
2016-11-10 22:40:42 +00:00
{
2016-11-09 03:38:40 +00:00
protected override string Header => "Volume";
[BackgroundDependencyLoader]
private void load(AudioManager audio)
2016-11-09 03:38:40 +00:00
{
2016-11-10 22:40:42 +00:00
Children = new Drawable[]
2016-11-09 03:38:40 +00: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 22:40:42 +00:00
};
}
}
2016-11-14 17:36:16 +00:00
}