xxxxxxxxxx
33
let snowflakes = [];
let t;
let c = 0;
function setup() {
createCanvas(windowWidth - 2, windowHeight - 2);
}
function draw() {
background(`pink`);
t = frameCount / 60;
for (var i = 0; i < 2; i++) {
snowflakes.push(new snowflake());
}
for (var j = 0; j < snowflakes.length; j++) {
snowflakes[j].show();
snowflakes[j].update(t);
}
if (c > 0 && c % 4 == 0) {
display();
}
}
function display() {
textSize(32);
stroke(255, 0, 0);
strokeWeight(10);
fill(255);
text('MERRY CHRISTMAS !', width / 4.5, height / 2);
}