2020-03-30 15:14:56 +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.
|
|
|
|
|
|
2021-02-03 21:12:20 +08:00
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Judgements;
|
|
|
|
|
|
2020-03-30 15:14:56 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects
|
|
|
|
|
{
|
|
|
|
|
public class SliderHeadCircle : HitCircle
|
|
|
|
|
{
|
2021-02-03 21:12:20 +08:00
|
|
|
|
/// <summary>
|
2023-11-03 01:58:14 +08:00
|
|
|
|
/// If <see langword="false"/>, treat this <see cref="SliderHeadCircle"/> as a normal <see cref="HitCircle"/> for judgement purposes.
|
|
|
|
|
/// If <see langword="true"/>, this <see cref="SliderHeadCircle"/> will be judged as a <see cref="SliderTick"/> instead.
|
2021-02-03 21:12:20 +08:00
|
|
|
|
/// </summary>
|
2023-11-02 16:04:49 +08:00
|
|
|
|
public bool ClassicSliderBehaviour;
|
2021-02-03 21:12:20 +08:00
|
|
|
|
|
2023-11-02 16:04:49 +08:00
|
|
|
|
public override Judgement CreateJudgement() => ClassicSliderBehaviour ? new SliderTickJudgement() : base.CreateJudgement();
|
2020-03-30 15:14:56 +08:00
|
|
|
|
}
|
|
|
|
|
}
|