1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-22 21:43:52 +08:00

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

@ -2,6 +2,3 @@
Version: latest Version: latest
HitCircleOverlayAboveNumber: 0 HitCircleOverlayAboveNumber: 0
HitCirclePrefix: display HitCirclePrefix: display
[Colours]
ReplayAimLine: 0,0,255

View File

@ -117,7 +117,6 @@ namespace osu.Game.Rulesets.Osu.UI
{ {
lifetimeManager.EntryBecameAlive += entryBecameAlive; lifetimeManager.EntryBecameAlive += entryBecameAlive;
lifetimeManager.EntryBecameDead += entryBecameDead; lifetimeManager.EntryBecameDead += entryBecameDead;
lifetimeManager.EntryCrossedBoundary += entryCrossedBoundary;
PathRadius = 1f; PathRadius = 1f;
Colour = new Color4(255, 255, 255, 127); 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> private sealed class AimLinePointComparator : IComparer<AimPointEntry>
{ {
public int Compare(AimPointEntry? x, AimPointEntry? y) 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 }, judgementLayer = new JudgementContainer<DrawableOsuJudgement> { RelativeSizeAxes = Axes.Both },
HitObjectContainer, HitObjectContainer,
judgementAboveHitObjectLayer = new Container { RelativeSizeAxes = Axes.Both }, judgementAboveHitObjectLayer = new Container { RelativeSizeAxes = Axes.Both },
approachCircles = new ProxyContainer { RelativeSizeAxes = Axes.Both } approachCircles = new ProxyContainer { RelativeSizeAxes = Axes.Both },
}; };
HitPolicy = new StartTimeOrderedHitPolicy(); HitPolicy = new StartTimeOrderedHitPolicy();