xxxxxxxxxx
31
var timer =0
var counter=0
var R
var G
var B
function setup() {
createCanvas(400, 400);
}
function draw() {
if (counter>=4500) {
noLoop()
}
timer=timer+1
if (timer==1) {
R = round(random(0,255))
G = round(random(0,255))
B = round(random(0,255))
background(R,G,B)
timer=0
counter=counter+1
}
if (counter>=4500) {
text ("Colors Made:16581375", 100, 200)
textSize (20)
fill(0)
}
}