mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:07:44 +08:00
40 lines
1.2 KiB
C#
40 lines
1.2 KiB
C#
// 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.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Overlays.Volume;
|
|
using osuTK;
|
|
using osuTK.Graphics;
|
|
|
|
namespace osu.Game.Tests.Visual.UserInterface
|
|
{
|
|
public class TestSceneVolumePieces : OsuTestScene
|
|
{
|
|
public override IReadOnlyList<Type> RequiredTypes => new[] { typeof(VolumeMeter), typeof(MuteButton) };
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
VolumeMeter meter;
|
|
MuteButton mute;
|
|
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),
|
|
});
|
|
|
|
Add(mute = new MuteButton
|
|
{
|
|
Margin = new MarginPadding { Top = 200 }
|
|
});
|
|
|
|
AddToggleStep("mute", b => mute.Current.Value = b);
|
|
}
|
|
}
|
|
}
|