xxxxxxxxxx
37
/*
----- Coding Tutorial by Patt Vira -----
Name: Snow (OOP)
Video Tutorial: https://youtu.be/ltI7CYZHrOg?si=LIfxJ5joW1Y-arqG
Connect with Patt: @pattvira
https://www.pattvira.com/
----------------------------------------
*/
let snowflakes = [];
function setup() {
createCanvas(400, 400);
angleMode(DEGREES);
}
function draw() {
background(0);
if (random(1) < 0.5) {
snowflakes.push(new Snow());
}
translate(width/2, 0);
for (let i=0; i<snowflakes.length; i++) {
snowflakes[i].update();
snowflakes[i].display();
if (snowflakes[i].done() == true) {
snowflakes.splice(i, 1);
}
}
// print(snowflakes.length);
}