Updating beatmap details icons

changes the sizing and add yellow circle so the UI will fit more with osu-web style.
This commit is contained in:
Daniel Kariv 2021-08-16 00:40:31 +03:00
parent f6773522d1
commit 38828b6b82
1 changed files with 12 additions and 2 deletions

View File

@ -129,10 +129,20 @@ public Statistic(BeatmapStatisticsIconType icon, string name)
Rotation = 45,
Colour = Color4Extensions.FromHex(@"441288"),
},
new BeatmapStatisticIcon(icon){
new SpriteIcon
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.Centre,
Size = new Vector2(12),
Icon = FontAwesome.Regular.Circle,
Size = new Vector2(10),
Rotation = 0,
Colour = Color4Extensions.FromHex(@"f7dd55"),
},
new BeatmapStatisticIcon(icon)
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.Centre,
Size = new Vector2(10),
Colour = Color4Extensions.FromHex(@"f7dd55"),
Scale = new Vector2(0.8f),
},