2017-03-28 10:18:12 +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-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Objects.Drawables.Pieces;
|
2017-03-28 10:18:12 +08:00
|
|
|
|
using OpenTK.Input;
|
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
2017-03-28 10:18:12 +08:00
|
|
|
|
{
|
|
|
|
|
public class DrawableRimHit : DrawableHit
|
|
|
|
|
{
|
2017-03-29 14:35:22 +08:00
|
|
|
|
protected override Key[] HitKeys { get; } = { Key.D, Key.K };
|
2017-03-28 10:18:12 +08:00
|
|
|
|
|
|
|
|
|
public DrawableRimHit(Hit hit)
|
|
|
|
|
: base(hit)
|
|
|
|
|
{
|
2017-04-05 09:01:40 +08:00
|
|
|
|
MainPiece.Add(new RimHitSymbolPiece());
|
2017-03-29 13:01:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
2017-04-05 09:01:40 +08:00
|
|
|
|
MainPiece.AccentColour = colours.BlueDarker;
|
2017-03-28 10:18:12 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|