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

Remove PP wedge and logic for gameplay layout

This commit is contained in:
Salman Ahmed 2023-11-05 01:56:45 +03:00
parent a23dfbeab5
commit 6c3169a0ed
2 changed files with 0 additions and 47 deletions

View File

@ -1,29 +0,0 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Skinning;
namespace osu.Game.Screens.Play.HUD
{
public partial class ArgonRightWedge : CompositeDrawable, ISerialisableDrawable
{
public bool UsesFixedAnchor { get; set; }
[BackgroundDependencyLoader]
private void load()
{
AutoSizeAxes = Axes.Both;
InternalChild = new ArgonWedgePiece
{
WedgeWidth = { Value = 274 },
WedgeHeight = { Value = 40 },
InvertShear = { Value = true },
EndOpacity = 0.5f,
};
}
}
}

View File

@ -120,8 +120,6 @@ namespace osu.Game.Skinning
var accuracy = container.OfType<ArgonAccuracyCounter>().FirstOrDefault();
var comboWedge = container.OfType<ArgonComboWedge>().FirstOrDefault();
var combo = container.OfType<ArgonComboCounter>().FirstOrDefault();
var rightWedge = container.OfType<ArgonRightWedge>().FirstOrDefault();
var ppCounter = container.OfType<ArgonPerformancePointsCounter>().FirstOrDefault();
var songProgress = container.OfType<ArgonSongProgress>().FirstOrDefault();
var keyCounter = container.OfType<ArgonKeyCounterDisplay>().FirstOrDefault();
@ -162,20 +160,6 @@ namespace osu.Game.Skinning
}
}
if (rightWedge != null)
{
rightWedge.Anchor = Anchor.TopRight;
rightWedge.Origin = Anchor.TopRight;
rightWedge.Position = new Vector2(180, 20);
if (ppCounter != null)
{
ppCounter.Anchor = Anchor.TopRight;
ppCounter.Origin = Anchor.TopRight;
ppCounter.Position = new Vector2(rightWedge.X - 240, rightWedge.Y + 8);
}
}
var hitError = container.OfType<HitErrorMeter>().FirstOrDefault();
if (hitError != null)
@ -222,8 +206,6 @@ namespace osu.Game.Skinning
new ArgonAccuracyCounter(),
new ArgonComboWedge(),
new ArgonComboCounter(),
new ArgonRightWedge(),
new ArgonPerformancePointsCounter(),
new BarHitErrorMeter(),
new BarHitErrorMeter(),
new ArgonSongProgress(),