1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-21 02:59:53 +08:00

Make OsuPlayfield box a bit larger.

This commit is contained in:
Dean Herbert
2016-09-02 20:07:27 +09:00
Unverified
parent 024ae1d1c2
commit 97d101310d
+8 -1
View File
@@ -21,7 +21,14 @@ namespace osu.Game.GameModes.Play.Osu
{
base.Load();
Add(new Box() { SizeMode = InheritMode.XY, Alpha = 0.5f });
Add(new Box()
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
SizeMode = InheritMode.XY,
Size = new Vector2(1.3f, 1.3f),
Alpha = 0.5f
});
}
}
}