Hopefully I'm not repeating anything that has been discussed here
But I am looking for a way to have an object or string to move on a xpos
but when you hover that object it would pause where it is and then when you
navigate away from the object or string it would continue scrolling.
I have a piece of text running like this right now
xpos+=2;
if (xpos>width) {
xpos = -100;
}
text("text" , 100+xpos, 50);
As an example, something similar to what netflix does with their scrolling movie selection
except the objects would keep moving and when you hover over them they would pause and
then when you navigate away from the object it would continue scrolling.