mouseDragged

概要

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

[p5.js] mouseDragged

サンプル

# Drag 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 mouseDragged
  @value += 5
  if @value > 255
    @value = 0
  end
  return false   # prevent default
end

構文

戻値