Processing, mouseButton
用法介绍。
说明
当按下鼠标按钮时,系统变量 mouseButton
的值将设置为 LEFT
、 RIGHT
或 CENTER
,具体取决于按下的按钮。 (如果没有按下按钮,mouseButton
可能会重置为 0
。因此,最好先使用 mousePressed
测试是否有任何按钮被按下,然后再测试 mouseButton
的值,如上例所示。)
例子
// Click within the image and press
// the left and right mouse buttons to
// change the value of the rectangle
void draw() {
if (mousePressed && (mouseButton == LEFT)) {
fill(0);
} else if (mousePressed && (mouseButton == RIGHT)) {
fill(255);
} else {
fill(126);
}
rect(25, 25, 50, 50);
}
// Click within the image and press
// the left and right mouse buttons to
// change the value of the rectangle
void draw() {
rect(25, 25, 50, 50);
}
void mousePressed() {
if (mouseButton == LEFT) {
fill(0);
} else if (mouseButton == RIGHT) {
fill(255);
} else {
fill(126);
}
}
相关用法
- Processing mouseY用法及代码示例
- Processing mouseMoved()用法及代码示例
- Processing mouseDragged()用法及代码示例
- Processing mouseX用法及代码示例
- Processing mouseWheel()用法及代码示例
- Processing mouseClicked()用法及代码示例
- Processing mouseReleased()用法及代码示例
- Processing mousePressed()用法及代码示例
- Processing mousePressed用法及代码示例
- Processing modelX()用法及代码示例
- Processing month()用法及代码示例
- Processing modelY()用法及代码示例
- Processing movieEvent()用法及代码示例
- Processing modelZ()用法及代码示例
- Processing match()用法及代码示例
- Processing minute()用法及代码示例
- Processing max()用法及代码示例
- Processing matchAll()用法及代码示例
- Processing map()用法及代码示例
- Processing millis()用法及代码示例
- Processing mag()用法及代码示例
- Processing min()用法及代码示例
- Processing FFT用法及代码示例
- Processing SawOsc.pan()用法及代码示例
- Processing FloatDict用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 mouseButton。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。