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

57 lines
1.8 KiB
C#
Raw Normal View History

// 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.
2018-04-13 17:19:50 +08:00
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2019-04-02 13:51:28 +08:00
using osu.Framework.Graphics.Effects;
2018-04-13 17:19:50 +08:00
using osu.Game.Graphics.Sprites;
2018-11-20 15:51:59 +08:00
using osuTK.Graphics;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics.Shapes;
using osu.Game.Graphics;
2018-04-13 17:19:50 +08:00
using osu.Game.Skinning;
namespace osu.Game.Rulesets.Osu.Objects.Drawables.Pieces
{
public class NumberPiece : Container
{
2018-09-27 15:27:11 +08:00
private readonly SkinnableSpriteText number;
2018-04-13 17:19:50 +08:00
public string Text
{
get => number.Text;
set => number.Text = value;
2018-04-13 17:19:50 +08:00
}
public NumberPiece()
{
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
Children = new Drawable[]
{
new SkinnableDrawable("Play/osu/number-glow", name => new CircularContainer
{
Masking = true,
Origin = Anchor.Centre,
EdgeEffect = new EdgeEffectParameters
{
Type = EdgeEffectType.Glow,
Radius = 60,
Colour = Color4.White.Opacity(0.5f),
},
Child = new Box()
}, s => s.GetTexture("Play/osu/hitcircle") == null),
2018-09-27 15:27:11 +08:00
number = new SkinnableSpriteText("Play/osu/number-text", _ => new OsuSpriteText
2018-04-13 17:19:50 +08:00
{
Font = OsuFont.Numeric.With(size: 40),
2018-04-13 17:19:50 +08:00
UseFullGlyphHeight = false,
2018-09-27 15:27:11 +08:00
}, restrictSize: false)
{
Text = @"1"
2018-04-13 17:19:50 +08:00
}
};
}
}
}