mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 03:17:28 +08:00
49 lines
1.4 KiB
C#
49 lines
1.4 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 osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using osuTK;
|
|
using osuTK.Graphics;
|
|
|
|
namespace osu.Game.Tests.Visual.UserInterface
|
|
{
|
|
public class TestSceneBackButton : OsuTestScene
|
|
{
|
|
public TestSceneBackButton()
|
|
{
|
|
BackButton button;
|
|
BackButton.Receptor receptor = new BackButton.Receptor();
|
|
|
|
Child = new Container
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Size = new Vector2(300),
|
|
Masking = true,
|
|
Children = new Drawable[]
|
|
{
|
|
receptor,
|
|
new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = Color4.SlateGray
|
|
},
|
|
button = new BackButton(receptor)
|
|
{
|
|
Anchor = Anchor.BottomLeft,
|
|
Origin = Anchor.BottomLeft,
|
|
}
|
|
}
|
|
};
|
|
|
|
button.Action = () => button.Hide();
|
|
|
|
AddStep("show button", () => button.Show());
|
|
AddStep("hide button", () => button.Hide());
|
|
}
|
|
}
|
|
}
|