1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:17:23 +08:00

Remove PlayfieldUnderlay for now

This commit is contained in:
smoogipoo 2017-12-02 19:53:11 +09:00
parent 52ba68e25d
commit 5a7c4772bd
3 changed files with 0 additions and 20 deletions

View File

@ -77,7 +77,6 @@ namespace osu.Game.Rulesets.Edit
Alpha = 0,
AlwaysPresent = true,
},
CreateUnderlay(rulesetContainer.Playfield),
rulesetContainer,
CreateOverlay(rulesetContainer.Playfield)
}
@ -106,8 +105,6 @@ namespace osu.Game.Rulesets.Edit
protected virtual RulesetContainer CreateRulesetContainer(Ruleset ruleset, WorkingBeatmap beatmap) => ruleset.CreateRulesetContainerWith(beatmap, true);
protected virtual PlayfieldUnderlay CreateUnderlay(Playfield playfield) => new PlayfieldUnderlay();
protected virtual PlayfieldOverlay CreateOverlay(Playfield playfield) => new PlayfieldOverlay();
protected abstract IReadOnlyList<ICompositionTool> CompositionTools { get; }

View File

@ -1,16 +0,0 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
namespace osu.Game.Rulesets.Edit
{
public class PlayfieldUnderlay : CompositeDrawable
{
public PlayfieldUnderlay()
{
RelativeSizeAxes = Axes.Both;
}
}
}

View File

@ -303,7 +303,6 @@
<Compile Include="Overlays\Profile\Sections\Ranks\ScoreModsContainer.cs" />
<Compile Include="Overlays\Settings\SettingsButton.cs" />
<Compile Include="Rulesets\Edit\PlayfieldOverlay.cs" />
<Compile Include="Rulesets\Edit\PlayfieldUnderlay.cs" />
<Compile Include="Screens\Edit\Components\BottomBarContainer.cs" />
<Compile Include="Screens\Edit\Components\PlaybackControl.cs" />
<Compile Include="Screens\Edit\Components\TimeInfoContainer.cs" />