Enabled judgements for repel (but not in depth). Updated comments in repel, mag, depth

This commit is contained in:
DavidBeh 2024-04-23 23:57:27 +02:00
parent f863ea30e1
commit 7dac5afd90
3 changed files with 6 additions and 5 deletions

View File

@ -47,10 +47,12 @@ public class OsuModDepth : ModWithVisibilityAdjustment, IUpdatableByPlayfield, I
public void ApplyToDrawableRuleset(DrawableRuleset<OsuHitObject> drawableRuleset)
{
// Hide judgment displays and follow points as they won't make any sense.
// Hide follow points as they won't make any sense.
// Judgements can potentially be turned on in a future where they display at a position relative to their drawable counterpart.
drawableRuleset.Playfield.DisplayJudgements.Value = false;
(drawableRuleset.Playfield as OsuPlayfield)?.FollowPoints.Hide();
// Hide judgements as they don't move with the drawables after appearing, which does look bad.
// They would need to either move with them or disappear sooner.
drawableRuleset.Playfield.DisplayJudgements.Value = false;
}
private void applyTransform(DrawableHitObject drawable, ArmedState state)

View File

@ -39,7 +39,7 @@ internal class OsuModMagnetised : Mod, IUpdatableByPlayfield, IApplicableToDrawa
public void ApplyToDrawableRuleset(DrawableRuleset<OsuHitObject> drawableRuleset)
{
// Hide judgment displays and follow points as they won't make any sense.
// Hide follow points as they won't make any sense.
// Judgements can potentially be turned on in a future where they display at a position relative to their drawable counterpart.
(drawableRuleset.Playfield as OsuPlayfield)?.FollowPoints.Hide();
}

View File

@ -38,9 +38,8 @@ internal class OsuModRepel : Mod, IUpdatableByPlayfield, IApplicableToDrawableRu
public void ApplyToDrawableRuleset(DrawableRuleset<OsuHitObject> drawableRuleset)
{
// Hide judgment displays and follow points as they won't make any sense.
// Hide follow points as they won't make any sense.
// Judgements can potentially be turned on in a future where they display at a position relative to their drawable counterpart.
drawableRuleset.Playfield.DisplayJudgements.Value = false;
(drawableRuleset.Playfield as OsuPlayfield)?.FollowPoints.Hide();
}