mirror of https://github.com/ppy/osu
Reduce interval between cursor trail parts
This commit is contained in:
parent
70d39e9be4
commit
6c00d3936a
|
@ -152,7 +152,7 @@ protected override bool OnMouseMove(MouseMoveEvent e)
|
|||
float distance = diff.Length;
|
||||
Vector2 direction = diff / distance;
|
||||
|
||||
float interval = partSize.X / 2 * 0.9f;
|
||||
float interval = partSize.X / 2.5f;
|
||||
|
||||
for (float d = interval; d < distance; d += interval)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue