const emojiArray = [129412, 129436, 129344, 9924, 128044];
const bgColor = "#E7ECF2";
pgemoji = createGraphics(width, height);
pgemoji.background(bgColor);
pgemoji.textAlign(CENTER, CENTER);
String.fromCodePoint(random(emojiArray)),
for (let i = 0; i < objsNum; i++) {
for (let i = 0; i < objs.length; i++) {
for (let j = 0; j < 4; j++) {
if (objs[i].c.toString() !== color(bgColor).toString()) {
this.vel = createVector(0, 0);
this.pos = createVector(random(width), random(height));
this.noiseScale = random([0.005, 0.01, 0.015]);
this.t = random(0, this.noiseScale);
this.lifeMax = random(1) > 0.05 ? random(10, 25) : random(100, 200);
this.life = this.lifeMax;
this.step = random(0.1, 0.5);
this.dMax = random(10, 30);
this.c = color(pgemoji.get(this.pos.x, this.pos.y));
noise(this.pos.x * this.noiseScale, this.pos.y * this.noiseScale, this.t),
this.d = map(this.life, 0, this.lifeMax, 0, this.dMax);
fill(red(this.c), green(this.c), blue(this.c), 10);
circle(this.pos.x, this.pos.y, this.d);