xxxxxxxxxx
22
let x = 50; // Starting x position of the shape
let y = 200; // Starting y position of the shape (set to 200 for better visibility)
function setup() {
createCanvas(400, 400); // Create a 400x400 canvas
background(220); // Set the background color to gray
}
function draw() {
background(220); // Clear the background each frame
// Draw the shape
rect(x, y, 50, 50);
// Check if the mouse is over the shape
if (mouseX > x && mouseX < x + 50 && mouseY > y && mouseY < y + 50) {
x = mouseX; // Move the shape to the mouse's x position
} else {
x++; // Move the shape horizontally over time
}
}