mirror of https://github.com/ppy/osu
Make OsuPlayfield box a bit larger.
This commit is contained in:
parent
024ae1d1c2
commit
97d101310d
|
@ -21,7 +21,14 @@ public override void Load()
|
|||
{
|
||||
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
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue