1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 02:13:21 +08:00

Mask the editor screens

This commit is contained in:
smoogipoo 2017-10-02 10:07:34 +09:00
parent 6018b4e5e4
commit 91cede79c2

View File

@ -81,11 +81,16 @@ namespace osu.Game.Screens.Edit
}
}
},
screenContainer = new Container
new Container
{
Name = "Screen container",
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Top = 40, Bottom = 60 }
Padding = new MarginPadding { Top = 40, Bottom = 60 },
Child = screenContainer = new Container
{
RelativeSizeAxes = Axes.Both,
Masking = true
}
}
};