bnb({
w, h,
webgl: true,
numFrames: 60,
loops: 3,
fps: 25,
record: true,
shutterAngle: 0.4,
samplesPerFrame: 16,
preload: (s, g) => {
g.pg = s.createGraphics(540, 540)
},
setup: (s, g) => {
g.palette = getRandomPalette()
s.sh = s.createShader(vertexShader(), fragmentShader())
s.shader(s.sh)
s.sh.setUniform('u_resolution', [w, h])
},
draw: (s, t, g) => {
if(g.frame === 0) {
g.palette = getRandomPalette()
s.sh.setUniform('u_background', hexToRgb(g.palette[0]).map(d => d / 255))
const arr = []
divideRect(0, 0, w, h, 10, arr, 1)
g.rects = arr.map(r => new Rect(r.x, r.y, r.w, r.h, g))
}
g.pg.background(g.palette[0])
g.rects.forEach(r => r.display(g.pg, t))
s.sh.setUniform('u_time', t)
s.sh.setUniform('u_texture', g.pg)
s.background(g.palette[0])
s.noStroke()
s.beginShape()
s.vertex(-1, -1)
s.vertex(1, -1)
s.vertex(1, 1)
s.vertex(-1, 1)
s.endShape(s.CLOSE)
}
})