Fix editor blueprints being misplaced

Regressed with PlayfieldAdjustmentContainer changes.
This commit is contained in:
Dean Herbert
2019-03-31 01:29:37 +09:00
parent 6738bd54c0
commit 42eaabe24c
9 changed files with 13 additions and 9 deletions

View File

@ -36,7 +36,7 @@ namespace osu.Game.Rulesets.Catch.UI
protected override Playfield CreatePlayfield() => new CatchPlayfield(Beatmap.BeatmapInfo.BaseDifficulty, CreateDrawableRepresentation);
protected override PlayfieldAdjustmentContainer CreatePlayfieldAdjustmentContainer() => new CatchPlayfieldAdjustmentContainer();
public override PlayfieldAdjustmentContainer CreatePlayfieldAdjustmentContainer() => new CatchPlayfieldAdjustmentContainer();
protected override PassThroughInputManager CreateInputManager() => new CatchInputManager(Ruleset.RulesetInfo);