xxxxxxxxxx
28
/*
Test
*/
function setup() {
console.log('navi');
createCanvas(400, 400);
}
function draw() {
background('purple');
//circle
fill('rgb(152,139,228)')
stroke('#673AB7')
strokeWeight(6)
circle(200,200,150);
//emoji
textSize(40)
text("💜",180,215);
//text tracks mouse
fill('rgb(176,167,248)')
noStroke()
textSize(25)
text("Hey! Listen!",mouseX-60,mouseY-10,)
}