mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 10:18:22 +08:00
account for beatmap base scroll speed in constant visualisation method
This commit is contained in:
parent
65c0b73dd5
commit
46a1f5267f
@ -72,7 +72,7 @@ namespace osu.Game.Rulesets.Taiko.UI
|
|||||||
protected virtual double ComputeTimeRange()
|
protected virtual double ComputeTimeRange()
|
||||||
{
|
{
|
||||||
// Adjust when we're using constant algorithm to not be sluggish.
|
// Adjust when we're using constant algorithm to not be sluggish.
|
||||||
double multiplier = VisualisationMethod == ScrollVisualisationMethod.Overlapping ? 1 : 4;
|
double multiplier = VisualisationMethod == ScrollVisualisationMethod.Overlapping ? 1 : 4 * Beatmap.Difficulty.SliderMultiplier;
|
||||||
return PlayfieldAdjustmentContainer.ComputeTimeRange() / multiplier;
|
return PlayfieldAdjustmentContainer.ComputeTimeRange() / multiplier;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user