mirror of
https://github.com/osukey/osukey.git
synced 2025-07-24 20:00:02 +09:00
Use container instead of fill flow
This commit is contained in:
@ -27,13 +27,17 @@ namespace osu.Game.Tests.Visual.Gameplay
|
|||||||
public TestSceneBreakOverlay()
|
public TestSceneBreakOverlay()
|
||||||
{
|
{
|
||||||
SpriteText breakTimeText;
|
SpriteText breakTimeText;
|
||||||
Child = new FillFlowContainer
|
Child = new Container
|
||||||
{
|
{
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
Direction = FillDirection.Vertical,
|
|
||||||
Children = new Drawable[]
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
breakTimeText = new SpriteText(),
|
breakTimeText = new SpriteText
|
||||||
|
{
|
||||||
|
Anchor = Anchor.Centre,
|
||||||
|
Origin = Anchor.Centre,
|
||||||
|
Margin = new MarginPadding { Bottom = 35 },
|
||||||
|
},
|
||||||
breakOverlay = new BreakOverlay(true)
|
breakOverlay = new BreakOverlay(true)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user