Dispose SelectionBoxes when they die

This commit is contained in:
smoogipoo 2018-02-15 19:08:03 +09:00
parent 4ac0c48ba6
commit 9583191556

View File

@ -52,6 +52,8 @@ namespace osu.Game.Rulesets.Edit.Layers.Selection
Size = bottomRight - topLeft;
}
public override bool DisposeOnDeathRemoval => true;
protected override void PopIn() => this.FadeIn(250, Easing.OutQuint);
protected override void PopOut() => this.FadeOut(250, Easing.OutQuint);
}