Centre align the icons

Seems to look better this way.
This commit is contained in:
smoogipoo 2019-08-30 19:34:28 +09:00
parent 665fc95d49
commit fab12fa9cd

View File

@ -98,16 +98,16 @@ namespace osu.Game.Screens.Play.HUD.HitErrorMeters
Y = -10,
Size = new Vector2(10),
Icon = FontAwesome.Solid.ShippingFast,
Anchor = Anchor.y0 | alignment,
Origin = Anchor.y0 | alignment,
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
},
new SpriteIcon
{
Y = 10,
Size = new Vector2(10),
Icon = FontAwesome.Solid.Bicycle,
Anchor = Anchor.y2 | alignment,
Origin = Anchor.y2 | alignment,
Anchor = Anchor.BottomCentre,
Origin = Anchor.BottomCentre,
}
}
},