mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:57:25 +08:00
56 lines
1.5 KiB
C#
56 lines
1.5 KiB
C#
// 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.
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Game.Graphics;
|
|
using osuTK;
|
|
using osuTK.Graphics;
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Skinning.Default
|
|
{
|
|
public class RimHitCirclePiece : CirclePiece
|
|
{
|
|
public RimHitCirclePiece()
|
|
{
|
|
Add(new RimHitSymbolPiece());
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colours)
|
|
{
|
|
AccentColour = colours.BlueDarker;
|
|
}
|
|
|
|
/// <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(SYMBOL_SIZE);
|
|
|
|
BorderThickness = SYMBOL_BORDER;
|
|
BorderColour = Color4.White;
|
|
Masking = true;
|
|
Children = new[]
|
|
{
|
|
new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Alpha = 0,
|
|
AlwaysPresent = true
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|
|
}
|