xxxxxxxxxx
30
/*
----- Coding Tutorial by Patt Vira -----
Name: Little Creatures
Video Tutorial: https://youtu.be/UnFaen1q_BU
Connect with Patt: @pattvira
https://www.pattvira.com/
----------------------------------------
*/
let creatures = []; let numCreatures = 15;
let colorPalette;
function setup() {
createCanvas(400, 400);
colorPalette = [color(254, 166, 161), color(0, 133, 212), color(252, 197, 3), color(252, 71, 1), color(1, 162, 72)];
for (let i=0; i<numCreatures; i++) {
let r0 = floor(random(8, 12));
let num = floor(random(5, 10));
creatures.push(new Creature(r0, num, colorPalette[i % colorPalette.length]));
}
}
function draw() {
background(238,238,228);
for (let i=0; i<numCreatures; i++) {
creatures[i].update();
creatures[i].display();
}
}