xxxxxxxxxx
32
function setup() {
createCanvas(400, 400);
}
let x = 0;
let speedX = 3
function draw() {
background(220);
if(x>width){
speedX = -3
}
if (x<0){
speedX = 3
}
circle(x, 200, 50);
if(x>200){
fill('pink')
}
if(x<200){
fill('white')
}
x= x+speedX
}