From 3a5f37444cda4ed8fd2cd43dfb870a2ee59d11a6 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Wed, 21 Sep 2016 13:21:55 +0900 Subject: [PATCH] Add back Playfield masking. --- osu.Game/GameModes/Play/Playfield.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/osu.Game/GameModes/Play/Playfield.cs b/osu.Game/GameModes/Play/Playfield.cs index 331ce41f7a..41a73472d8 100644 --- a/osu.Game/GameModes/Play/Playfield.cs +++ b/osu.Game/GameModes/Play/Playfield.cs @@ -7,5 +7,11 @@ namespace osu.Game.GameModes.Play { public class Playfield : Container { + public override void Load() + { + base.Load(); + + Masking = true; + } } }