// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osuTK; using osu.Framework.Graphics.Shapes; using osu.Game.Graphics; namespace osu.Game.Rulesets.Taiko.Objects.Drawables.Pieces { public class CentreHitCirclePiece : CirclePiece { public CentreHitCirclePiece() { Add(new CentreHitSymbolPiece()); } [BackgroundDependencyLoader] private void load(OsuColour colours) { AccentColour = colours.PinkDarker; } /// /// The symbol used for centre hit pieces. /// public class CentreHitSymbolPiece : Container { public CentreHitSymbolPiece() { Anchor = Anchor.Centre; Origin = Anchor.Centre; RelativeSizeAxes = Axes.Both; Size = new Vector2(SYMBOL_SIZE); Padding = new MarginPadding(SYMBOL_BORDER); Children = new[] { new CircularContainer { RelativeSizeAxes = Axes.Both, Masking = true, Children = new[] { new Box { RelativeSizeAxes = Axes.Both } } } }; } } } }