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:
parent
851ef4fbbf
commit
36ae4dd271
@ -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
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user