mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 16:27:26 +08:00
33 lines
1.1 KiB
C#
33 lines
1.1 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Rulesets.Osu.Judgements;
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects.Drawables
|
|
{
|
|
public class DrawableSliderTail : DrawableOsuHitObject, IRequireTracking
|
|
{
|
|
/// <summary>
|
|
/// The judgement text is provided by the <see cref="DrawableSlider"/>.
|
|
/// </summary>
|
|
public override bool DisplayJudgement => false;
|
|
|
|
public bool Tracking { get; set; }
|
|
|
|
public DrawableSliderTail(HitCircle hitCircle)
|
|
: base(hitCircle)
|
|
{
|
|
AlwaysPresent = true;
|
|
RelativeSizeAxes = Axes.Both;
|
|
}
|
|
|
|
protected override void CheckForJudgements(bool userTriggered, double timeOffset)
|
|
{
|
|
if (!userTriggered && timeOffset >= 0)
|
|
AddJudgement(new OsuSliderTailJudgement { Result = Tracking ? HitResult.Great : HitResult.Miss });
|
|
}
|
|
}
|
|
}
|