Move Playfield Border to OsuPlayfield Ruleset

This commit is contained in:
Yao Chung Hu
2020-07-10 07:36:21 -05:00
parent 0d95b768aa
commit d40f209f4b
4 changed files with 25 additions and 28 deletions

View File

@ -79,16 +79,9 @@ namespace osu.Game.Overlays.Settings.Sections.Gameplay
},
new SettingsCheckbox
{
LabelText = "Show playfield area",
Bindable = config.GetBindable<bool>(OsuSetting.ShowPlayfieldArea)
},
new SettingsSlider<double>
{
LabelText = "Playfield area dim",
Bindable = config.GetBindable<double>(OsuSetting.PlayfieldAreaDimLevel),
KeyboardStep = 0.01f,
DisplayAsPercentage = true
},
LabelText = "Show playfield border",
Bindable = config.GetBindable<bool>(OsuSetting.ShowPlayfieldBorder)
}
};
}
}