xxxxxxxxxx
15
// TouchedTexts (c) 2015, 2021 kouichi.matsuda@gmail.com
function setup() {
createCanvas(400, 400);
background(200); // 描画領域を灰色に
textSize(20);
}
function draw() {
}
function touchStarted(){
text("こんにちは", mouseX, mouseY);
return false;
}