mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 14:27:25 +08:00
51 lines
1.5 KiB
C#
51 lines
1.5 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
namespace osu.Game.Screens.Multi.Match.Components
|
|
{
|
|
public class ReadyButton : TriangleButton
|
|
{
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
BackgroundColour = OsuColour.FromHex(@"1187aa");
|
|
|
|
Triangles.ColourLight = OsuColour.FromHex(@"277b9c");
|
|
Triangles.ColourDark = OsuColour.FromHex(@"1f6682");
|
|
Triangles.TriangleScale = 1.5f;
|
|
|
|
Text = "Start";
|
|
|
|
Add(new Container
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Alpha = 1f,
|
|
Child = new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Alpha = 0.15f,
|
|
Blending = BlendingMode.Additive,
|
|
},
|
|
});
|
|
}
|
|
|
|
protected override SpriteText CreateText() => new OsuSpriteText
|
|
{
|
|
Depth = -1,
|
|
Origin = Anchor.Centre,
|
|
Anchor = Anchor.Centre,
|
|
Font = @"Exo2.0-Light",
|
|
TextSize = 30,
|
|
};
|
|
}
|
|
}
|