xxxxxxxxxx
19
function preload() {
virus = loadJSON("sketch.json");
}
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
noStroke();
fill(virus.r, virus.g, virus.b);
ellipse(width/2, height/2, 50, 50);
}
//Thanks The Coding Train!
//https://www.youtube.com/watch?v=_NFkzw6oFtQ