mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 23:27:32 +08:00
49 lines
1.4 KiB
C#
49 lines
1.4 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 HeaderButton : TriangleButton
|
||
|
{
|
||
|
[BackgroundDependencyLoader]
|
||
|
private void load()
|
||
|
{
|
||
|
BackgroundColour = OsuColour.FromHex(@"1187aa");
|
||
|
|
||
|
Triangles.ColourLight = OsuColour.FromHex(@"277b9c");
|
||
|
Triangles.ColourDark = OsuColour.FromHex(@"1f6682");
|
||
|
Triangles.TriangleScale = 1.5f;
|
||
|
|
||
|
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,
|
||
|
};
|
||
|
}
|
||
|
}
|