mirror of https://github.com/ppy/osu
Merge pull request #23492 from alixdotsh/master
Fix angle sharpness slider value not always scaling by 0.5
This commit is contained in:
commit
8e497bd99b
|
@ -9,7 +9,6 @@
|
|||
using osu.Framework.Utils;
|
||||
using osu.Game.Beatmaps;
|
||||
using osu.Game.Configuration;
|
||||
using osu.Game.Overlays.Settings;
|
||||
using osu.Game.Rulesets.Mods;
|
||||
using osu.Game.Rulesets.Objects;
|
||||
using osu.Game.Rulesets.Osu.Beatmaps;
|
||||
|
@ -28,7 +27,7 @@ public class OsuModRandom : ModRandom, IApplicableToBeatmap
|
|||
|
||||
public override Type[] IncompatibleMods => base.IncompatibleMods.Append(typeof(OsuModTargetPractice)).ToArray();
|
||||
|
||||
[SettingSource("Angle sharpness", "How sharp angles should be", SettingControlType = typeof(SettingsSlider<float>))]
|
||||
[SettingSource("Angle sharpness", "How sharp angles should be")]
|
||||
public BindableFloat AngleSharpness { get; } = new BindableFloat(7)
|
||||
{
|
||||
MinValue = 1,
|
||||
|
|
Loading…
Reference in New Issue