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:
parent
8cdd9c9ddc
commit
822ecb7106
@ -2,6 +2,3 @@
|
|||||||
Version: latest
|
Version: latest
|
||||||
HitCircleOverlayAboveNumber: 0
|
HitCircleOverlayAboveNumber: 0
|
||||||
HitCirclePrefix: display
|
HitCirclePrefix: display
|
||||||
|
|
||||||
[Colours]
|
|
||||||
ReplayAimLine: 0,0,255
|
|
@ -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)
|
||||||
|
@ -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();
|
||||||
|
Loading…
Reference in New Issue
Block a user