xxxxxxxxxx
25
// ButtonInput (c) 2015, 2021 kouichi.matsuda@gmail.com
let input; // 入力フィールドを管理する変数
function setup() {
input = createInput(); // 入力フィールドの作成
let button = createButton("実行"); // ボタンの作成
button.mousePressed(clicked); // クリックされたらclickedを実行
}
function draw() {
}
function clicked() {
background(255);
let cmd = input.value(); // 入力されたテキストの取り出し
if (cmd === "長方形") {
rect(10, 10, 80, 80);
} else if (cmd === "円") {
ellipse(50, 50, 70, 70);
} else {
text(cmd, 10, height / 2);
}
}