Reduce interval between cursor trail parts

This commit is contained in:
smoogipoo 2019-09-11 13:28:46 +09:00
parent 70d39e9be4
commit 6c00d3936a
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{