Reorder graphics settings and move gameplay related pieces out

This commit is contained in:
Dean Herbert
2021-10-12 14:34:00 +09:00
parent c4347de57e
commit 5ca1d1d12c
7 changed files with 51 additions and 21 deletions

View File

@ -33,6 +33,11 @@ namespace osu.Game.Overlays.Settings.Sections.Gameplay
LabelText = SkinSettingsStrings.BeatmapHitsounds,
Current = config.GetBindable<bool>(OsuSetting.BeatmapHitsounds)
},
new SettingsCheckbox
{
LabelText = GraphicsSettingsStrings.StoryboardVideo,
Current = config.GetBindable<bool>(OsuSetting.ShowStoryboard)
},
};
}
}