1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 22:07:25 +08:00

Ezplain slider multiplier adjustment

This commit is contained in:
Bartłomiej Dach 2021-06-15 23:00:09 +02:00
parent b0549187df
commit 57f0c47ded

View File

@ -91,6 +91,11 @@ namespace osu.Game.Rulesets.Taiko.Mods
public void ApplyToDifficulty(BeatmapDifficulty difficulty)
{
originalSliderMultiplier = difficulty.SliderMultiplier;
// the hidden mod on stable had an added playfield cover that essentially forced a 4:3 playfield ratio, by cutting off all objects past that size.
// lazer currently uses a playfield adjustment container which keeps a 16:9 ratio.
// therefore, increase the slider multiplier proportionally so that the notes stay on the screen for the same amount of time as on stable.
// note that this will means that the notes will scroll faster as they have a longer distance to travel on the screen in that same amount of time.
difficulty.SliderMultiplier /= hd_sv_scale;
}