1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00

Add note about implementation being shared

This commit is contained in:
Dean Herbert 2023-10-25 15:44:51 +09:00
parent 6eafb66fdf
commit 2f95e7a284
No known key found for this signature in database
3 changed files with 6 additions and 0 deletions

View File

@ -92,6 +92,8 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
{
// Attempt to preserve correct ordering of judgements as best we can by forcing
// an un-judged head to be missed when the user has clearly skipped it.
//
// This check is applied to all nested slider objects apart from the head (ticks, repeats, tail).
if (Tracking && !DrawableSlider.HeadCircle.Judged)
DrawableSlider.HeadCircle.MissForcefully();

View File

@ -143,6 +143,8 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
// Attempt to preserve correct ordering of judgements as best we can by forcing
// an un-judged head to be missed when the user has clearly skipped it.
//
// This check is applied to all nested slider objects apart from the head (ticks, repeats, tail).
if (Tracking && !DrawableSlider.HeadCircle.Judged)
DrawableSlider.HeadCircle.MissForcefully();

View File

@ -80,6 +80,8 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
{
// Attempt to preserve correct ordering of judgements as best we can by forcing
// an un-judged head to be missed when the user has clearly skipped it.
//
// This check is applied to all nested slider objects apart from the head (ticks, repeats, tail).
if (Tracking && !DrawableSlider.HeadCircle.Judged)
DrawableSlider.HeadCircle.MissForcefully();