2023-10-13 16:01:48 +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.Mania.Objects.Drawables
|
|
|
|
{
|
2023-10-16 14:14:26 +08:00
|
|
|
public partial class DrawableNotePerfectBonus : DrawableManiaHitObject<NotePerfectBonus>
|
2023-10-13 16:01:48 +08:00
|
|
|
{
|
2023-10-16 13:57:55 +08:00
|
|
|
public override bool DisplayResult => false;
|
|
|
|
|
2023-10-16 14:14:26 +08:00
|
|
|
public DrawableNotePerfectBonus()
|
2023-10-13 16:01:48 +08:00
|
|
|
: this(null!)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2023-10-16 14:14:26 +08:00
|
|
|
public DrawableNotePerfectBonus(NotePerfectBonus hitObject)
|
2023-10-13 16:01:48 +08:00
|
|
|
: base(hitObject)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <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);
|
|
|
|
}
|
|
|
|
}
|