osu/osu.Game.Rulesets.Osu/Skinning/Default/NumberPiece.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.6 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 09:19:50 +00:00
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2019-04-02 05:51:28 +00:00
using osu.Framework.Graphics.Effects;
using osu.Game.Graphics;
2020-12-04 11:21:53 +00:00
using osu.Game.Graphics.Sprites;
2018-02-22 08:33:47 +00:00
using osu.Game.Skinning;
2020-12-04 11:21:53 +00:00
using osuTK.Graphics;
2018-04-13 09:19:50 +00:00
2020-12-04 11:21:53 +00:00
namespace osu.Game.Rulesets.Osu.Skinning.Default
{
public class NumberPiece : Container
{
2018-09-27 07:27:11 +00:00
private readonly SkinnableSpriteText number;
2018-04-13 09:19:50 +00:00
2017-02-15 14:23:55 +00:00
public string Text
{
get => number.Text.ToString();
set => number.Text = value;
2017-02-15 14:23:55 +00:00
}
2018-04-13 09:19:50 +00:00
public NumberPiece()
{
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
2018-04-13 09:19:50 +00:00
2017-02-15 14:23:55 +00:00
Children = new Drawable[]
{
new Container
2017-02-15 14:23:55 +00:00
{
Masking = true,
2017-06-12 03:48:47 +00:00
EdgeEffect = new EdgeEffectParameters
2017-02-15 14:23:55 +00:00
{
Type = EdgeEffectType.Glow,
Radius = 60,
Colour = Color4.White.Opacity(0.5f),
},
},
number = new SkinnableSpriteText(new OsuSkinComponent(OsuSkinComponents.HitCircleText), _ => new OsuSpriteText
{
Font = OsuFont.Numeric.With(size: 40),
2017-02-15 14:23:55 +00:00
UseFullGlyphHeight = false,
}, confineMode: ConfineMode.NoScaling)
2018-09-27 07:27:11 +00:00
{
Text = @"1"
}
};
}
}
2018-01-05 11:21:19 +00:00
}