当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Processing mouseClicked()用法及代码示例


Processing, mouseClicked()用法介绍。

用法

  • mouseClicked()
  • mouseClicked(event)

返回

  • void

说明

mouseClicked()函数被调用鼠标按钮被按下然后释放。



鼠标和键盘事件仅在程序具有 draw() 时起作用。如果没有 draw() ,代码只运行一次,然后停止监听事件。

例子

// Click within the image to change 
// the value of the rectangle after
// after the mouse has been clicked

int value = 0;

void draw() {
  fill(value);
  rect(25, 25, 50, 50);
}

void mouseClicked() {
  if (value == 0) {
    value = 255;
  } else {
    value = 0;
  }
}

相关用法


注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 mouseClicked()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。