mirror of
https://github.com/ppy/osu.git
synced 2025-01-27 03:23:03 +08:00
Adjust scaling factor
This commit is contained in:
parent
0fee76c95c
commit
1c44e19066
@ -72,7 +72,7 @@ namespace osu.Game.Rulesets.Osu.Difficulty.Preprocessing
|
||||
float scalingFactor = normalized_radius / (float)BaseObject.Radius;
|
||||
if (BaseObject.Radius < 30)
|
||||
{
|
||||
float smallCircleBonus = Math.Min(30 - (float)BaseObject.Radius, 5) / 50;
|
||||
float smallCircleBonus = Math.Min(30 - (float)BaseObject.Radius, 5) / 30;
|
||||
scalingFactor *= 1 + smallCircleBonus;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user