Change label of attribute

This commit is contained in:
BlauFx 2020-03-15 18:53:40 +01:00
parent b6aedb22d8
commit d9aef6f813

View File

@ -26,14 +26,15 @@ namespace osu.Game.Rulesets.Osu.Mods
[SettingSource("Easing", "Change the easing type of the approach circles.", 0)] [SettingSource("Easing", "Change the easing type of the approach circles.", 0)]
public Bindable<Easing> BindableEasing { get; } = new Bindable<Easing>(); public Bindable<Easing> BindableEasing { get; } = new Bindable<Easing>();
[SettingSource("Scale", "Change the factor of the approach circle scale.", 1)] [SettingSource("Scale the size", "Change the factor of the approach circle scale.", 1)]
public BindableFloat Scale { get; } = new BindableFloat public BindableFloat Scale { get; } = new BindableFloat
{ {
Precision = 0.1f, Precision = 0.1f,
MinValue = 2, MinValue = 2,
MaxValue = 10, MaxValue = 10,
Default = 4, Default = 4,
Value = 4, Value = 4
}; };
public void ApplyToDrawableHitObjects(IEnumerable<DrawableHitObject> drawables) public void ApplyToDrawableHitObjects(IEnumerable<DrawableHitObject> drawables)