move default into StoryboardContainer, fix load bug, remove comment

This commit is contained in:
David Zhao
2019-07-10 12:24:05 +09:00
parent 41afe89c0b
commit 7929104b8a
3 changed files with 5 additions and 17 deletions

View File

@ -78,12 +78,7 @@ namespace osu.Game.Screens.Play
protected StoryboardContainer StoryboardContainer { get; private set; }
protected virtual StoryboardContainer CreateStoryboardContainer(Storyboard storyboard) => new StoryboardContainer(storyboard)
{
RelativeSizeAxes = Axes.Both,
Alpha = 1,
EnableUserDim = { Value = true }
};
protected virtual StoryboardContainer CreateStoryboardContainer(Storyboard storyboard) => new StoryboardContainer(storyboard) { RelativeSizeAxes = Axes.Both };
[Cached]
[Cached(Type = typeof(IBindable<IReadOnlyList<Mod>>))]