xxxxxxxxxx
//Inspiration:
//https://www.smithsonianmag.com/science-nature/watch-amazing-time-lapse-growing-mushrooms-180976118/
//
// Made for Fungi 🍄 #WCCChallenge
// Simple fun little sketch.
// Hello Raph and chat.
//
let shrooms;
function setup() {
createCanvas(windowWidth, windowHeight);
background(50)
shrooms = []
}
function draw() {
colorMode(RGB)
background(50)
shrooms.forEach(shroom => {
shroom.display()
shroom.grow()
}
)
shrooms = shrooms.filter(s => s.lifeSpan > 0)
shrooms.push(new Shroom(mouseX,mouseY))
}