mouseMoved

概要

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

[p5.js] mouseMoved

サンプル

# Move the mouse across the page to change its value
def setup
  background(220)
  @value = 0
end

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

def mouseMoved
  @value += 5
  if @value > 255
    @value = 0
  end
end

構文

戻値