mirror of
https://github.com/ppy/osu.git
synced 2025-02-19 20:02:57 +08:00
Merge pull request #22429 from peppy/fix-health-display-anchor-point
Fix default health bar having a very weird anchor point in the skin editor
This commit is contained in:
commit
d38316bf4f
@ -78,11 +78,19 @@ namespace osu.Game.Screens.Play.HUD
|
|||||||
|
|
||||||
public DefaultHealthDisplay()
|
public DefaultHealthDisplay()
|
||||||
{
|
{
|
||||||
Size = new Vector2(1, 5);
|
const float padding = 20;
|
||||||
RelativeSizeAxes = Axes.X;
|
const float bar_height = 5;
|
||||||
Margin = new MarginPadding { Top = 20 };
|
|
||||||
|
|
||||||
InternalChildren = new Drawable[]
|
Size = new Vector2(1, bar_height + padding * 2);
|
||||||
|
RelativeSizeAxes = Axes.X;
|
||||||
|
|
||||||
|
InternalChild = new Container
|
||||||
|
{
|
||||||
|
Padding = new MarginPadding { Vertical = padding },
|
||||||
|
Anchor = Anchor.CentreLeft,
|
||||||
|
Origin = Anchor.CentreLeft,
|
||||||
|
RelativeSizeAxes = Axes.Both,
|
||||||
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
new Box
|
new Box
|
||||||
{
|
{
|
||||||
@ -102,6 +110,7 @@ namespace osu.Game.Screens.Play.HUD
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user