xxxxxxxxxx
20
// NoLoop (c) 2015, 2021 kouichi.matsuda@gmil.com
let x = 0;
function setup() {}
function draw() {
background(255); // 描画領域をクリア(前に描画した絵を消す)
rect(x, x, 30, 30); // 長方形を描画
x++; // 描画位置を変更
if (x > height) {
x = 0;
} // 一番下まで行ったら上に移動する
}
function mouseClicked() {
if (mouseButton == LEFT){
noLoop();
}
}