xxxxxxxxxx
26
let paperPlanes = [];
function mouseDragged() {
for (let i = 0; i < 1; i++) {
let p = new Planes(mouseX, mouseY, 10);
paperPlanes.push(p);
}
}
function setup() {
createCanvas(windowWidth, windowHeight);
colorMode(HSB);
}
function draw() {
background(0);
for (let p of paperPlanes) {
p.edge();
p.flock(paperPlanes);
p.update();
p.show();
}
}