xxxxxxxxxx
38
let myText = ['Hello', 'Bonjour', 'Hola', 'Salve', 'Shikamoo', 'Merhaba', 'Konichiwa', 'Nin Hao']
var bubbles = [];
function setup() {
createCanvas(600, 400);
}
function mouseDragged() {
bubbles.push(new Bubble(mouseX, mouseY));
}
function draw() {
background(180, 120, 120);
fill(255);
for (var i = 0; i < bubbles.length; i++) {
bubbles[i].display();
}
if (bubbles.length > 8) {
bubbles.splice(0, 1);
}
}
function Bubble(x, y) {
this.x = x;
this.y = y;
this.randText = random(myText);
this.display = function() {
push();
fill(255);
textSize(32);
textFont('Cutive Mono');
text(this.randText,this.x, this.y);
pop();
}
}