1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-15 21:17:46 +08:00

Improve visual display of arrow

This commit is contained in:
smoogipoo 2020-06-22 21:09:47 +09:00
parent b3e200ee7f
commit cb03e6faa9

View File

@ -72,6 +72,15 @@ namespace osu.Game.Rulesets.Osu.Statistics
}
},
new Container
{
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
{
new Container
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding(1),
Child = new Container
{
RelativeSizeAxes = Axes.Both,
Masking = true,
@ -96,19 +105,21 @@ namespace osu.Game.Rulesets.Osu.Statistics
Width = 1f,
Rotation = rotation
},
new Box
{
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
Width = 10,
Height = 2f,
}
},
},
new Box
{
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
Y = -1,
Width = 2f,
Width = 10,
Height = 2,
},
new Box
{
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
Width = 2,
Height = 10,
}
}