I have a ball that a user can interact with using matter.js. Currently, the ball can move while dragging it by clicking and moving the mouse. How do I make it so the user can interact with the ball by passing over it with the mouse without clicking?
let mouseConstraint = MouseConstraint.create(engine);
World.add(engine.world, mouseConstraint);