xxxxxxxxxx
let w = 200;
let font;
function preload() {
font = loadFont("YuseiMagic-Regular.ttf");
}
function setup() {
createCanvas(600, 600, WEBGL);
textFont(font);
// textAlign(CENTER);
}
function draw() {
background(233, 255, 112);
ellipse(width * 0.05, height * 0.045, w--, 50);
ellipse(width * 0.05, height * 0.2, w--, 50);
ellipse(width * 0.05, height * 0.35, w--, 50);
noStroke();
// stroke(222, 186, 111);
// strokeWeight(3);
fill(93, 217, 193);
moti();
}
function moti() {
let time = millis();
rotateX(time / 1000);
rotateZ(time / 1234);
textSize(100);
text('モチっ', 130, 120);
fill(255);
}