Do beads not work with a svg path?

I made a Squiggle() with an svg path which renders fine. Trying to use beads on it gives me an error. Is this known or a bug? Sample code:

let path = new Squiggle({
    points:"M1.2,422c48.5,16.2,123,35,214.6,33.2,90-1.8,206.1-23.6,206.1-46.6,0-.9-.2-1.8-.5-2.7",
    color:green.darken(.8),
    interactive: false
}).center();

new Beads({
    path:path,
    obj:new Circle(5, series(red, blue)),
    visible:false,
    count:13
}).center();

Ah... it seems to be a bug when interactive is set to false on the path. Set it to false on the Beads, for now. We will tidy up the code and fix the bug.

1 Like

Ah yes - we had solved this for Blob but forgot to adjust it for Squiggle too. Simple adjustment, just working on another bug then will set the patch live.

This has been patched. Let us know if there is an issue after reload. Do you need the NPM version updated?

1 Like

@abstract Awesome thanks.

1 Like