mirror of
https://github.com/osukey/osukey.git
synced 2025-08-06 16:13:57 +09:00
Fix typos in comments
This commit is contained in:
@ -121,7 +121,7 @@ namespace osu.Game.Rulesets.Osu.Difficulty
|
|||||||
: 0.0);
|
: 0.0);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Scale the aim value with accuracy _alot_
|
// Scale the aim value with accuracy _a lot_
|
||||||
if (accuracy > .8)
|
if (accuracy > .8)
|
||||||
aimValue *= 0.5 + Math.Pow(Math.Sin(2.5 * (accuracy - .8) * Math.PI), 2) / 2;
|
aimValue *= 0.5 + Math.Pow(Math.Sin(2.5 * (accuracy - .8) * Math.PI), 2) / 2;
|
||||||
else
|
else
|
||||||
@ -157,7 +157,7 @@ namespace osu.Game.Rulesets.Osu.Difficulty
|
|||||||
if (mods.Any(m => m is OsuModHidden))
|
if (mods.Any(m => m is OsuModHidden))
|
||||||
speedValue *= 1.0 + 0.04 * (12.0 - Attributes.ApproachRate);
|
speedValue *= 1.0 + 0.04 * (12.0 - Attributes.ApproachRate);
|
||||||
|
|
||||||
// Scale the speed value with accuracy _alot_
|
// Scale the speed value with accuracy _a lot_
|
||||||
if (accuracy > .8)
|
if (accuracy > .8)
|
||||||
speedValue *= 0.5 + Math.Pow(Math.Sin(2.5 * (accuracy - .8) * Math.PI), 2) / 2;
|
speedValue *= 0.5 + Math.Pow(Math.Sin(2.5 * (accuracy - .8) * Math.PI), 2) / 2;
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user