1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 02:02:53 +08:00

Make score counter right-aligned

This commit is contained in:
Salman Ahmed 2023-11-07 00:49:22 +03:00
parent 754e05213c
commit 4c7db4c262

View File

@ -139,7 +139,10 @@ namespace osu.Game.Skinning
scoreWedge.Position = new Vector2(-50, 15);
if (score != null)
score.Position = new Vector2(components_x_offset, scoreWedge.Y + 15);
{
score.Origin = Anchor.TopRight;
score.Position = new Vector2(components_x_offset + 200, scoreWedge.Y + 30);
}
if (accuracy != null)
{