mirror of
https://github.com/ppy/osu.git
synced 2024-11-13 16:13:34 +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:
parent
4da6d53c72
commit
0af16732b8
@ -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()
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user