xxxxxxxxxx
48
x=50;
w=50;
y=10;
woff=0;
function setup() {
createCanvas(700, 700);
background(231,201,148);
// rectMode(CENTER);
}
function draw() {
noStroke();
r=random(1,10);
woff = woff + 1;
let n = noise(woff) * 2;
if (frameCount < r){
fill(118,148,46);}
if (frameCount > r){
fill(70,70,33);}
if (frameCount > r+20){
fill(118,148,46);}
rect(x,y,50,50);
y=y+50
if(y>700){y=10; x=x+100;}
// rect(x*n,10,50*n,height-20);
// x=x+100
//if (x>600){
// fill(70,70,33);
// rect(n*200,650-10,50*n,50); noLoop();}
strokeWeight(20);
stroke(230,223,210);
noFill();
rect(0,0,width,height);
}