xxxxxxxxxx
37
/*
----- Coding Tutorial by Patt Vira -----
Name: Bubbly Emoji Effect
Video Tutorial: https://youtu.be/Rd1eeHEx_fM
Connect with Patt: @pattvira
https://www.pattvira.com/
----------------------------------------
*/
let emojis = [];
let emojisText = ["😇", "😃", "😉", "🤣", "😍", "🤩", "😏"];
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
if (abs(pmouseX - mouseX) > 0 || abs(pmouseY - mouseY) > 0 ) {
emojis.push(new Emoji(mouseX, mouseY));
}
for (let i=0; i<emojis.length; i++) {
emojis[i].update();
emojis[i].display();
}
for (let i=0; i<emojis.length; i++) {
if (emojis[i].done == true) {
emojis.splice(i, 1);
}
}
}