1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-02 10:10:14 +08:00

Also add slight adjustment to score display

This commit is contained in:
Dean Herbert
2020-10-16 18:37:24 +09:00
Unverified
parent cbaad4eb56
commit 2ba8bc45fd
+2
View File
@@ -5,6 +5,7 @@ using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
using osuTK;
namespace osu.Game.Skinning
{
@@ -28,6 +29,7 @@ namespace osu.Game.Skinning
// base class uses int for display, but externally we bind to ScoreProcesssor as a double for now.
Current.BindValueChanged(v => base.Current.Value = (int)v.NewValue);
Scale = new Vector2(0.96f);
Margin = new MarginPadding(10);
}