mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 20:47:26 +08:00
36 lines
1009 B
C#
36 lines
1009 B
C#
// 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.Allocation;
|
|
using osu.Game.Graphics;
|
|
using OpenTK.Input;
|
|
using osu.Game.Modes.Taiko.Objects.Drawable.Pieces;
|
|
|
|
namespace osu.Game.Modes.Taiko.Objects.Drawable
|
|
{
|
|
public class DrawableStrongRimHit : DrawableStrongHit
|
|
{
|
|
protected override Key[] HitKeys { get; } = { Key.D, Key.K };
|
|
|
|
private readonly CirclePiece circlePiece;
|
|
|
|
public DrawableStrongRimHit(Hit hit)
|
|
: base(hit)
|
|
{
|
|
Add(circlePiece = new StrongCirclePiece
|
|
{
|
|
Children = new[]
|
|
{
|
|
new RimHitSymbolPiece()
|
|
}
|
|
});
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colours)
|
|
{
|
|
circlePiece.AccentColour = colours.BlueDarker;
|
|
}
|
|
}
|
|
}
|