1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-16 00:37:19 +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 new Container
{
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
{
new Container
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding(1),
Child = new Container
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
Masking = true, Masking = true,
@ -96,19 +105,21 @@ namespace osu.Game.Rulesets.Osu.Statistics
Width = 1f, Width = 1f,
Rotation = rotation Rotation = rotation
}, },
new Box }
{ },
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
Width = 10,
Height = 2f,
}, },
new Box new Box
{ {
Anchor = Anchor.TopRight, Anchor = Anchor.TopRight,
Origin = Anchor.TopRight, Origin = Anchor.TopRight,
Y = -1, Width = 10,
Width = 2f, Height = 2,
},
new Box
{
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
Width = 2,
Height = 10, Height = 10,
} }
} }