1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-22 22:17:46 +08:00

Tweak allowable ranges of size multiplier

This commit is contained in:
Bartłomiej Dach 2022-01-24 21:16:10 +01:00
parent 4a13c93ca7
commit 2375420d4c
No known key found for this signature in database
GPG Key ID: BCECCD4FA41F6497
3 changed files with 6 additions and 6 deletions

View File

@ -19,8 +19,8 @@ namespace osu.Game.Rulesets.Catch.Mods
[SettingSource("Flashlight size", "Multiplier applied to the default flashlight size.")]
public override BindableNumber<float> SizeMultiplier { get; } = new BindableNumber<float>
{
MinValue = 0.4f,
MaxValue = 1.7f,
MinValue = 0.5f,
MaxValue = 1.5f,
Default = 1f,
Value = 1f,
Precision = 0.1f

View File

@ -20,8 +20,8 @@ namespace osu.Game.Rulesets.Mania.Mods
[SettingSource("Flashlight size", "Multiplier applied to the default flashlight size.")]
public override BindableNumber<float> SizeMultiplier { get; } = new BindableNumber<float>
{
MinValue = 0.1f,
MaxValue = 4.5f,
MinValue = 0.5f,
MaxValue = 3f,
Default = 1f,
Value = 1f,
Precision = 0.1f

View File

@ -20,8 +20,8 @@ namespace osu.Game.Rulesets.Taiko.Mods
[SettingSource("Flashlight size", "Multiplier applied to the default flashlight size.")]
public override BindableNumber<float> SizeMultiplier { get; } = new BindableNumber<float>
{
MinValue = 0.1f,
MaxValue = 1.66f,
MinValue = 0.5f,
MaxValue = 1.5f,
Default = 1f,
Value = 1f,
Precision = 0.1f