xxxxxxxxxx
20
let words = ["Hello", "Ala", "this", "is", "not", "black", "magic."];
let index = 0;
let x;
let y;
function setup() {
createCanvas(600, 400);
}
function draw() {
background(220);
textSize(50);
x = mouseX;
y = mouseY;
// t = map(mouseX, 0, 600, 0, 350);
for (i = 0; i < words.length; i++) {
text(words[i],i*x,i * y + 40);
}
}