remove unnecessary changes

This commit is contained in:
Sheepposu 2024-02-23 23:52:17 -05:00
parent 8cdd9c9ddc
commit 822ecb7106
3 changed files with 2 additions and 11 deletions

View File

@ -1,7 +1,4 @@
[General]
Version: latest
HitCircleOverlayAboveNumber: 0
HitCirclePrefix: display
[Colours]
ReplayAimLine: 0,0,255
HitCirclePrefix: display

View File

@ -117,7 +117,6 @@ namespace osu.Game.Rulesets.Osu.UI
{
lifetimeManager.EntryBecameAlive += entryBecameAlive;
lifetimeManager.EntryBecameDead += entryBecameDead;
lifetimeManager.EntryCrossedBoundary += entryCrossedBoundary;
PathRadius = 1f;
Colour = new Color4(255, 255, 255, 127);
@ -153,11 +152,6 @@ namespace osu.Game.Rulesets.Osu.UI
}
}
private void entryCrossedBoundary(LifetimeEntry entry, LifetimeBoundaryKind kind, LifetimeBoundaryCrossingDirection direction)
{
}
private sealed class AimLinePointComparator : IComparer<AimPointEntry>
{
public int Compare(AimPointEntry? x, AimPointEntry? y)

View File

@ -59,7 +59,7 @@ namespace osu.Game.Rulesets.Osu.UI
judgementLayer = new JudgementContainer<DrawableOsuJudgement> { RelativeSizeAxes = Axes.Both },
HitObjectContainer,
judgementAboveHitObjectLayer = new Container { RelativeSizeAxes = Axes.Both },
approachCircles = new ProxyContainer { RelativeSizeAxes = Axes.Both }
approachCircles = new ProxyContainer { RelativeSizeAxes = Axes.Both },
};
HitPolicy = new StartTimeOrderedHitPolicy();