2017-03-29 13:01:01 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
2017-04-04 11:38:55 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2017-03-29 13:01:01 +08:00
|
|
|
|
using OpenTK;
|
|
|
|
|
using OpenTK.Graphics;
|
2017-06-20 13:54:23 +08:00
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2017-03-29 13:01:01 +08:00
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Objects.Drawables.Pieces
|
2017-03-29 13:01:01 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The symbol used for rim hit pieces.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class RimHitSymbolPiece : CircularContainer
|
|
|
|
|
{
|
|
|
|
|
public RimHitSymbolPiece()
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre;
|
|
|
|
|
Origin = Anchor.Centre;
|
|
|
|
|
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
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|