1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 06:47:24 +08:00

Clean up the code

This commit is contained in:
normalid 2024-07-23 20:47:49 +08:00
parent 5dcc8b7a8f
commit f7dc0b65da
2 changed files with 5 additions and 12 deletions

View File

@ -1,7 +1,6 @@
// 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 System;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Graphics;
@ -20,6 +19,8 @@ namespace osu.Game.Skinning
public Colour4 KeyDownBackgroundColour { get; set; } = Colour4.Yellow;
public Colour4 KeyUpBackgroundColour { get; set; } = Colour4.White;
private float keyTextRotation = 0f;
public float KeyTextRotation
{
@ -31,8 +32,6 @@ namespace osu.Game.Skinning
}
}
public Colour4 KeyUpBackgroundColour { get; set; } = Colour4.White;
private Container keyContainer = null!;
private SkinnableSprite overlayKey = null!;
@ -71,13 +70,9 @@ namespace osu.Game.Skinning
},
}
};
}
protected override void LoadComplete()
{
base.LoadComplete();
Width = Math.Max(overlayKey.Width, 48 * 0.95f);
Height = Math.Max(overlayKey.Height, 46 * 0.95f);
// Legacy key counter size
Height = Width = 48 * 0.95f;
}
protected override void Activate(bool forwardPlayback = true)

View File

@ -16,15 +16,13 @@ namespace osu.Game.Skinning
protected override FillFlowContainer<KeyCounter> KeyFlow { get; } = null!;
private SkinnableSprite overlayBackground = null!;
public LegacyKeyCounterDisplay()
{
AutoSizeAxes = Axes.Both;
AddRangeInternal(new Drawable[]
{
overlayBackground = new SkinnableSprite
new SkinnableSprite
{
Anchor = Anchor.TopLeft,
Origin = Anchor.TopLeft,