mirror of
https://github.com/osukey/osukey.git
synced 2025-05-23 14:37:39 +09:00
Vertically center "coming soon" text
This commit is contained in:
parent
4cf409ab35
commit
3c7cd97d42
@ -7,6 +7,7 @@ using osu.Framework.Graphics.Containers;
|
|||||||
using osu.Framework.Graphics.Shapes;
|
using osu.Framework.Graphics.Shapes;
|
||||||
using osu.Game.Graphics;
|
using osu.Game.Graphics;
|
||||||
using osu.Game.Graphics.Sprites;
|
using osu.Game.Graphics.Sprites;
|
||||||
|
using OpenTK.Graphics;
|
||||||
|
|
||||||
namespace osu.Game.Overlays.Profile
|
namespace osu.Game.Overlays.Profile
|
||||||
{
|
{
|
||||||
@ -60,12 +61,13 @@ namespace osu.Game.Overlays.Profile
|
|||||||
// placeholder
|
// placeholder
|
||||||
Add(new OsuSpriteText
|
Add(new OsuSpriteText
|
||||||
{
|
{
|
||||||
Text = @"Coming soon!",
|
Text = @"coming soon!",
|
||||||
TextSize = 36,
|
TextSize = 16,
|
||||||
Font = @"Exo2.0-RegularItalic",
|
Font = @"Exo2.0-Medium",
|
||||||
|
Colour = Color4.Gray,
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
Margin = new MarginPadding { Bottom = 200 }
|
Margin = new MarginPadding { Top = 100, Bottom = 100 }
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user