mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 02:37:25 +08:00
32 lines
1.0 KiB
C#
32 lines
1.0 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.Game.Beatmaps;
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
|
{
|
|
/// <summary>
|
|
/// A hit used specifically for drum rolls, where spawning flying hits is required.
|
|
/// </summary>
|
|
public class DrawableFlyingHit : DrawableHit
|
|
{
|
|
public DrawableFlyingHit(DrawableDrumRollTick drumRollTick)
|
|
: base(new IgnoreHit
|
|
{
|
|
StartTime = drumRollTick.HitObject.StartTime + drumRollTick.Result.TimeOffset,
|
|
IsStrong = drumRollTick.HitObject.IsStrong,
|
|
Type = drumRollTick.JudgementType
|
|
})
|
|
{
|
|
HitObject.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty());
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
ApplyResult(r => r.Type = r.Judgement.MaxResult);
|
|
}
|
|
}
|
|
}
|