Add double tap to MultiXY?

Hey! just wondering if it's possible to add a DoubleTap to MultiXY to return all points to their original position?

Thanks!

Also while I'm here, is it possible to label each pad point? Unless there is now a way to color each point individually? (but from what i read, its not possible)

e.g. x1/y1 instead of "0" I can label it LC (lowcut)

You can set the labels by setting the points property as follows:
["Point A", "Point B"]

The points can be targeted individually in css using the .pad-X selector:

.pad-0 {
  --color-fill: red;
  --color-stroke: red;
}
.pad-1 {
  --color-fill: green;
  --color-stroke: green;
}
/* etc */

I'm not sure about doubletap here as it may conflict with the multitouch capability, you could use a dedicated button to reset the multixy (using the button's script)

1 Like

Thats amazing and simple! Thank you so much! :slight_smile:

great for the point color !
It's a recent add-on ?