Avoid the need for per-settings control classes

This commit is contained in:
Dean Herbert
2021-07-08 16:56:16 +09:00
parent a6e94dd491
commit bd7c334588
7 changed files with 17 additions and 18 deletions

View File

@ -18,6 +18,8 @@ namespace osu.Game.Rulesets.Catch.Mods
Precision = 0.1f,
MinValue = 1,
MaxValue = 10,
ExtendedMaxValue = 11,
ReadFromDifficulty = diff => diff.CircleSize,
};
[SettingSource("Approach Rate", "Override a beatmap's set AR.", LAST_SETTING_ORDER + 1)]
@ -26,6 +28,8 @@ namespace osu.Game.Rulesets.Catch.Mods
Precision = 0.1f,
MinValue = 1,
MaxValue = 10,
ExtendedMaxValue = 11,
ReadFromDifficulty = diff => diff.ApproachRate,
};
[SettingSource("Spicy Patterns", "Adjust the patterns as if Hard Rock is enabled.")]