xxxxxxxxxx
37
let txt1;
let txt2;
let myarr = [];
let i = 0;
function setup() {
createCanvas(1500, 1200);
textSize(50);
}
function draw() {
if (myarr.length < 25){
myarr.push(new tekst("GOD JUL",random(-750,750),random(-600,600) ) );
}
translate(height/2,width/2);
background(0);
for (var dings of myarr){
if (i > 7){
dings.newColor();
i = 0;
}
dings.show();
dings.move();
if (dings.x > width/2) {
dings.x = - width/2;
dings.newColor();
}
if (dings.y > height/2){
dings.y = -height/2;
dings.newColor();
}
}
i++;
}