Straight down?
Any way to make icons fall straight down instead of moving side to side?
Try setting the prop horizSpeed={0}
Doesn't seem to be working. Looking at the source code, it looks like these functions are what govern the side-to-side behavior:
`const spring = (dt, position, velocity, anchor, tension = 50, mass = 1) => { const dist = sub(position, anchor); const acc = divide(multiply(-1, tension, dist), mass); return set(velocity, add(velocity, multiply(dt, acc))); };
const swingArc = (x, y, xArc, yBase, anchor) => { const percentArc = divide(abs(sub(x, anchor)), xArc); const yOffset = multiply(percentArc, divide(xArc, 4)); return set(y, sub(yBase, yOffset)); };`
Would you be mind if I PR'd a third option that doesn't have the swinging?