mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
Actually multiply by the multiplier
This commit is contained in:
@ -149,7 +149,7 @@ namespace osu.Game.Rulesets.Osu.UI.Cursor
|
||||
float distance = diff.Length;
|
||||
Vector2 direction = diff / distance;
|
||||
|
||||
float interval = partSize.X / 2.5f / IntervalMultiplier;
|
||||
float interval = partSize.X / 2.5f * IntervalMultiplier;
|
||||
|
||||
for (float d = interval; d < distance; d += interval)
|
||||
{
|
||||
|
Reference in New Issue
Block a user