mousePressed

概要

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

[p5.js] mousePressed

サンプル

# Click within the image to change the value of the rectangle
def setup
  background(220)
  @value = 0
end

def draw
  fill(@value)
  rect(25, 25, 50, 50)
end

def mousePressed
  if @value == 0
    @value = 255
  else
    @value = 0
  end
end

構文

戻値