xxxxxxxxxx
var bee
var buzz = 0
var agetation = 10
function preload() {
bee = loadImage("https://vignette1.wikia.nocookie.net/vsbattles/images/4/40/Bee-PNG-8.png")
}
function setup() {
createCanvas(windowWidth, windowHeight);
}
function draw() {
background(100);
buzz += 0.005
agetation -= 10 / 30 / 60
for (let i = 0; i < 30; i++) {
let x = noise(buzz * agetation,i * 2) * windowWidth * 2 - windowWidth / 2
let y = noise(buzz * agetation,i * 2 + 1) * windowHeight * 2 - windowHeight / 2
image(bee, x,y)
}
}