mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 12:57:25 +08:00
40 lines
1.1 KiB
C#
40 lines
1.1 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.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osuTK;
|
|
using osuTK.Graphics;
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Objects.Drawables.Pieces
|
|
{
|
|
/// <summary>
|
|
/// The symbol used for rim hit pieces.
|
|
/// </summary>
|
|
public class RimHitSymbolPiece : CircularContainer
|
|
{
|
|
public RimHitSymbolPiece()
|
|
{
|
|
Anchor = Anchor.Centre;
|
|
Origin = Anchor.Centre;
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
Size = new Vector2(CirclePiece.SYMBOL_SIZE);
|
|
|
|
BorderThickness = CirclePiece.SYMBOL_BORDER;
|
|
BorderColour = Color4.White;
|
|
Masking = true;
|
|
Children = new[]
|
|
{
|
|
new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Alpha = 0,
|
|
AlwaysPresent = true
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|