2017-03-28 09:51:22 +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
|
|
|
|
|
|
2017-03-29 13:01:01 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Game.Graphics;
|
2017-04-04 11:38:55 +08:00
|
|
|
|
using osu.Game.Modes.Taiko.Objects.Drawables.Pieces;
|
|
|
|
|
using OpenTK.Input;
|
2017-03-28 09:33:23 +08:00
|
|
|
|
|
2017-04-04 11:38:55 +08:00
|
|
|
|
namespace osu.Game.Modes.Taiko.Objects.Drawables
|
2017-03-28 09:33:23 +08:00
|
|
|
|
{
|
|
|
|
|
public class DrawableStrongCentreHit : DrawableStrongHit
|
|
|
|
|
{
|
2017-03-29 14:35:22 +08:00
|
|
|
|
protected override Key[] HitKeys { get; } = { Key.F, Key.J };
|
2017-03-28 09:33:23 +08:00
|
|
|
|
|
|
|
|
|
public DrawableStrongCentreHit(Hit hit)
|
|
|
|
|
: base(hit)
|
|
|
|
|
{
|
2017-04-04 11:53:06 +08:00
|
|
|
|
Circle.Add(new CentreHitSymbolPiece());
|
2017-03-29 13:01:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
2017-04-03 13:39:56 +08:00
|
|
|
|
Circle.AccentColour = colours.PinkDarker;
|
2017-03-28 09:33:23 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|