1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 17:27:24 +08:00

Change default slider velocity to 1.4

This is the default in osu!stable and plays better than 1.0.
This commit is contained in:
Dean Herbert 2023-12-06 13:38:46 +09:00
parent 4da6d53c72
commit 0af16732b8
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ namespace osu.Game.Beatmaps
public float OverallDifficulty { get; set; } = IBeatmapDifficultyInfo.DEFAULT_DIFFICULTY;
public float ApproachRate { get; set; } = IBeatmapDifficultyInfo.DEFAULT_DIFFICULTY;
public double SliderMultiplier { get; set; } = 1;
public double SliderMultiplier { get; set; } = 1.4;
public double SliderTickRate { get; set; } = 1;
public BeatmapDifficulty()

View File

@ -88,7 +88,7 @@ namespace osu.Game.Screens.Edit.Setup
Description = EditorSetupStrings.BaseVelocityDescription,
Current = new BindableDouble(Beatmap.Difficulty.SliderMultiplier)
{
Default = 1,
Default = 1.4,
MinValue = 0.4,
MaxValue = 3.6,
Precision = 0.01f,