Make OsuPlayfield box a bit larger.

This commit is contained in:
Dean Herbert 2016-09-02 20:07:27 +09:00
parent 024ae1d1c2
commit 97d101310d
1 changed files with 8 additions and 1 deletions

View File

@ -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
});
}
}
}