mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:57:25 +08:00
31 lines
992 B
C#
31 lines
992 B
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.
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects.Drawables
|
|
{
|
|
public class DrawableSpinnerTick : DrawableOsuHitObject
|
|
{
|
|
public override bool DisplayResult => false;
|
|
|
|
protected DrawableSpinner DrawableSpinner => (DrawableSpinner)ParentHitObject;
|
|
|
|
public DrawableSpinnerTick()
|
|
: base(null)
|
|
{
|
|
}
|
|
|
|
public DrawableSpinnerTick(SpinnerTick spinnerTick)
|
|
: base(spinnerTick)
|
|
{
|
|
}
|
|
|
|
protected override double MaximumJudgementOffset => DrawableSpinner.HitObject.Duration;
|
|
|
|
/// <summary>
|
|
/// Apply a judgement result.
|
|
/// </summary>
|
|
/// <param name="hit">Whether this tick was reached.</param>
|
|
internal void TriggerResult(bool hit) => ApplyResult(r => r.Type = hit ? r.Judgement.MaxResult : r.Judgement.MinResult);
|
|
}
|
|
}
|