mouseIsPressed

概要

p5.jsリファレンス(参考情報)

[p5.js] mouseIsPressed

サンプル

def draw
  background(237, 34, 93)
  fill(0)

  if mouseIsPressed
    ellipse(50, 50, 50, 50)
  else
    rect(25, 25, 50, 50)
  end
end

構文

戻値