1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 19:27:31 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Objects/Drawables/Pieces/NumberPiece.cs

60 lines
1.8 KiB
C#
Raw Normal View History

2018-01-05 19:21:19 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-12-06 17:56:20 +08:00
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Sprites;
2017-02-15 22:23:55 +08:00
using osu.Game.Graphics.Sprites;
using OpenTK.Graphics;
using osu.Framework.Graphics.Shapes;
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.Osu.Objects.Drawables.Pieces
{
public class NumberPiece : Container
{
private readonly SpriteText number;
2017-02-15 22:23:55 +08:00
public string Text
{
get { return number.Text; }
set { number.Text = value; }
}
public NumberPiece()
{
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
2017-02-15 22:23:55 +08:00
Children = new Drawable[]
{
2017-02-15 22:23:55 +08:00
new CircularContainer
{
Masking = true,
Origin = Anchor.Centre,
2017-06-12 11:48:47 +08:00
EdgeEffect = new EdgeEffectParameters
2017-02-15 22:23:55 +08:00
{
Type = EdgeEffectType.Glow,
Radius = 60,
Colour = Color4.White.Opacity(0.5f),
},
Children = new[]
{
new Box()
}
},
number = new OsuSpriteText
{
2017-02-15 22:23:55 +08:00
Text = @"1",
Font = @"Venera",
UseFullGlyphHeight = false,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
2017-02-15 22:23:55 +08:00
TextSize = 40,
Alpha = 1
}
};
}
}
2018-01-05 19:21:19 +08:00
}