2019-08-21 02:17:27 +08:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects.Drawables
|
|
|
|
{
|
|
|
|
public class DrawableSpinnerTick : DrawableOsuHitObject
|
|
|
|
{
|
|
|
|
public override bool DisplayResult => false;
|
|
|
|
|
2020-12-03 19:03:39 +08:00
|
|
|
protected DrawableSpinner DrawableSpinner => (DrawableSpinner)ParentHitObject;
|
|
|
|
|
2020-11-12 14:59:48 +08:00
|
|
|
public DrawableSpinnerTick()
|
|
|
|
: base(null)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-08-21 02:17:27 +08:00
|
|
|
public DrawableSpinnerTick(SpinnerTick spinnerTick)
|
|
|
|
: base(spinnerTick)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-12-03 19:03:39 +08:00
|
|
|
protected override double MaximumJudgementOffset => DrawableSpinner.HitObject.Duration;
|
2020-11-25 22:38:47 +08:00
|
|
|
|
2019-12-25 10:34:12 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Apply a judgement result.
|
|
|
|
/// </summary>
|
2020-07-21 18:48:44 +08:00
|
|
|
/// <param name="hit">Whether this tick was reached.</param>
|
2020-09-29 13:35:43 +08:00
|
|
|
internal void TriggerResult(bool hit) => ApplyResult(r => r.Type = hit ? r.Judgement.MaxResult : r.Judgement.MinResult);
|
2019-08-21 02:17:27 +08:00
|
|
|
}
|
|
|
|
}
|