We are about to switch to a new forum software. Until then we have removed the registration on this forum.
void setup() { size(100, 100, P3D); } void draw() { if (mouseX < 50) { noCursor(); } else { cursor(HAND); } }
void setup() { size(500, 500, P3D); } void draw() { if (mouseX < 50) { noCursor(); // switch cursor off } else { cursor(); // switch cursor on cursor(HAND); // set cursor } }
Chrisir THX :o
;-)
Answers
Chrisir THX :o
;-)