mirror of
https://github.com/ppy/osu.git
synced 2025-01-06 06:13:04 +08:00
digestify speed return
This commit is contained in:
parent
8796e45f63
commit
6d254fba0a
@ -84,7 +84,10 @@ namespace osu.Game.Rulesets.Osu.Difficulty.Skills
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return (1 + (speedBonus - 1) * 0.75) * angleBonus * (0.95 + speedBonus * Math.Pow(distance / single_spacing_threshold, 3.5)) / Math.Max(deltaTime, 1);
|
return (1 + (speedBonus - 1) * 0.75)
|
||||||
|
* angleBonus
|
||||||
|
* (0.95 + speedBonus * Math.Pow(distance / single_spacing_threshold, 3.5))
|
||||||
|
/ Math.Max(deltaTime, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user