2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-03-29 13:01:01 +08:00
|
|
|
|
// 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;
|
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 centre hit pieces.
|
|
|
|
|
/// </summary>
|
2017-08-03 14:27:45 +08:00
|
|
|
|
public class CentreHitSymbolPiece : Container
|
2017-03-29 13:01:01 +08:00
|
|
|
|
{
|
|
|
|
|
public CentreHitSymbolPiece()
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre;
|
|
|
|
|
Origin = Anchor.Centre;
|
2017-08-03 12:23:12 +08:00
|
|
|
|
|
2017-08-03 14:27:45 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
Size = new Vector2(CirclePiece.SYMBOL_SIZE);
|
|
|
|
|
Padding = new MarginPadding(CirclePiece.SYMBOL_BORDER);
|
2017-08-03 12:23:12 +08:00
|
|
|
|
|
2017-08-03 14:27:45 +08:00
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
|
|
|
|
new CircularContainer
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Masking = true,
|
|
|
|
|
Children = new[] { new Box { RelativeSizeAxes = Axes.Both } }
|
|
|
|
|
}
|
|
|
|
|
};
|
2017-03-29 13:01:01 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|