1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-13 08:32:57 +08:00

Fix osu! playfield (was using inheriting sizemode when it shouldn't).

This commit is contained in:
Dean Herbert 2016-09-15 23:58:02 +09:00
parent 851ef4fbbf
commit 36ae4dd271

View File

@ -12,6 +12,7 @@ namespace osu.Game.GameModes.Play.Osu
{
public OsuPlayfield()
{
SizeMode = InheritMode.None;
Size = new Vector2(512, 384);
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
@ -26,7 +27,6 @@ namespace osu.Game.GameModes.Play.Osu
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
SizeMode = InheritMode.XY,
Size = new Vector2(1.3f, 1.3f),
Alpha = 0.5f
});
}