1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 20:22:55 +08:00

Remove 1.3x scale and adjust metrics with it

This commit is contained in:
Salman Ahmed 2022-09-22 20:39:13 +03:00
parent e9c3478f69
commit 49af80e17b
2 changed files with 3 additions and 3 deletions

View File

@ -55,14 +55,14 @@ namespace osu.Game.Rulesets.Osu.Skinning.Argon
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Font = OsuFont.Default.With(size: 28, weight: FontWeight.Bold),
Y = -120,
Y = -100,
},
spmContainer = new Container
{
Alpha = 0f,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Y = 100,
Y = 60,
Children = new[]
{
spmCounter = new OsuSpriteText

View File

@ -22,7 +22,7 @@ namespace osu.Game.Rulesets.Osu.Skinning.Argon
{
public class ArgonSpinnerDisc : CompositeDrawable
{
private const float initial_scale = 1.3f;
private const float initial_scale = 1f;
private const float idle_alpha = 0.2f;
private const float tracking_alpha = 0.4f;