xxxxxxxxxx
37
let inTouch = false;
function setup() {
createCanvas(windowWidth,windowHeight);
textSize(60);
textAlign(CENTER);
fill(255);
colorMode(HSB);
pixelDensity(displayDensity());
}
function draw() {
background(255,100,100);
if(touches.length > 0) {
for(let i = 0; i < touches.length; i++) {
fill(40*i,100,100);
ellipse(touches[i].x, touches[i].y, 350,350);
}
text("IN TOUCH",width/2,height/2);
text("TOUCHES: "+touches.length,width/2,height/2+60);
}
else {
if(inTouch) ellipse(mouseX,mouseY,350,350);
}
}
function touchStarted() {
inTouch = true;
return false;
}
function touchEnded() {
inTouch = false;
return false;
}