mouseMoved with Android
in
Android Processing
•
1 year ago
Hi everybody !
I would like to make a very basic drawing app for android. I found this topic which exmplain well how to do for PC version of processing : http://processing.org/discourse/yabb2/YaBB.pl?num=1259103869
To sum up the code is :
But infortunately mouseMoved function seems not to work with Android. Would you have some tips to fix this problem ? Or an other way to make a fluid drawinf app ? Thanks a lot !
I would like to make a very basic drawing app for android. I found this topic which exmplain well how to do for PC version of processing : http://processing.org/discourse/yabb2/YaBB.pl?num=1259103869
To sum up the code is :
void setup() {
size(1000, 800);
fill(0);
}
void draw() {
}
void mouseMoved(){
ellipse(mouseX, mouseY, 10, 10);
}
But infortunately mouseMoved function seems not to work with Android. Would you have some tips to fix this problem ? Or an other way to make a fluid drawinf app ? Thanks a lot !
1