2019-01-24 16:43:03 +08: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 17:19:50 +08:00
|
|
|
|
|
2018-02-28 23:14:52 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Overlays.Volume;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
|
|
|
|
using osuTK.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-03-25 00:02:36 +08:00
|
|
|
|
namespace osu.Game.Tests.Visual.UserInterface
|
2018-02-28 23:14:52 +08:00
|
|
|
|
{
|
2019-05-15 03:37:25 +08:00
|
|
|
|
public class TestSceneVolumePieces : OsuTestScene
|
2018-02-28 23:14:52 +08:00
|
|
|
|
{
|
2018-03-04 03:20:07 +08:00
|
|
|
|
protected override void LoadComplete()
|
2018-02-28 23:14:52 +08:00
|
|
|
|
{
|
|
|
|
|
VolumeMeter meter;
|
2018-03-04 03:20:07 +08:00
|
|
|
|
MuteButton mute;
|
2018-06-13 18:18:11 +08:00
|
|
|
|
Add(meter = new VolumeMeter("MASTER", 125, Color4.Blue) { Position = new Vector2(10) });
|
|
|
|
|
AddSliderStep("master volume", 0, 10, 0, i => meter.Bindable.Value = i * 0.1);
|
|
|
|
|
|
|
|
|
|
Add(new VolumeMeter("BIG", 250, Color4.Red)
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Position = new Vector2(10),
|
|
|
|
|
});
|
|
|
|
|
|
2018-03-04 21:03:53 +08:00
|
|
|
|
Add(mute = new MuteButton
|
2018-02-28 23:14:52 +08:00
|
|
|
|
{
|
|
|
|
|
Margin = new MarginPadding { Top = 200 }
|
2018-03-04 21:03:53 +08:00
|
|
|
|
});
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-03-04 03:20:07 +08:00
|
|
|
|
AddToggleStep("mute", b => mute.Current.Value = b);
|
2018-02-28 23:14:52 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|