5_14 抓取滑鼠左/中/右鍵

5_14 抓取滑鼠左/中/右鍵

這是可以抓取滑鼠左/中/右鍵的範例,

針對各鍵判斷是那個被按下(用==)

 


void setup()
{
  size(120,120);
  smooth();
  strokeWeight(30);
}

void draw()
{
  background(204);
  stroke(102);
  line(40,0,70,height);
  if(mousePressed)
  {
    if(mouseButton==LEFT)
    {
      stroke(255);
    }
    else
    {
      stroke(0);
    }
    line(0,70,width,50);
  }
 
}

 

 

自我LV~