Processing, mouseDragged()
用法介紹。
用法
mouseDragged()
mouseDragged(event)
返回
void
說明
mouseDragged()
每次按下鼠標按鈕時鼠標移動時調用一次函數。 (如果一個按鈕不是被壓,mouseMoved()
而是調用。)
鼠標和鍵盤事件僅在程序具有 draw()
時起作用。如果沒有 draw()
,代碼隻運行一次,然後停止監聽事件。
例子
// Drag (click and hold) your mouse across the
// image to change the value of the rectangle
int value = 0;
void draw() {
fill(value);
rect(25, 25, 50, 50);
}
void mouseDragged()
{
value = value + 5;
if (value > 255) {
value = 0;
}
}
相關用法
- Processing mouseY用法及代碼示例
- Processing mouseMoved()用法及代碼示例
- Processing mouseX用法及代碼示例
- Processing mouseButton用法及代碼示例
- 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大神的英文原創作品 mouseDragged()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。