Add setting to toggle standardised or exponential scoring display

Also adjusts exponential scoring to be closer to stable. Log wasn't cutting it.
This commit is contained in:
Dean Herbert
2018-06-08 03:17:12 +09:00
parent d5e42a8daa
commit 0b4f5af52e
4 changed files with 20 additions and 4 deletions

View File

@ -4,6 +4,7 @@
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Configuration;
using osu.Game.Rulesets.Scoring;
namespace osu.Game.Overlays.Settings.Sections.Gameplay
{
@ -38,6 +39,11 @@ namespace osu.Game.Overlays.Settings.Sections.Gameplay
LabelText = "Always show key overlay",
Bindable = config.GetBindable<bool>(OsuSetting.KeyOverlay)
},
new SettingsEnumDropdown<ScoringMode>
{
LabelText = "Score display mode",
Bindable = config.GetBindable<ScoringMode>(OsuSetting.ScoreDisplayMode)
}
};
}
}