We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I have a problem i would like to stop the execution of void draw() but on android processing the function noLoop() don't work and i want an equivalent to finish my program. Thank for your help!
Answers
noLoop is not used to finish your program :-B
https://processing.org/reference/draw_.html
https://processing.org/reference/noLoop_.html
Have you tried calling exit();
Kf
I just want to an equivalent of noLoop because i must use this function to stop the execution of draw and i know exit() but, exit() is use after. Thank
just set a boolean marker stillWorking and use if in draw:
before setup
boolean stillWorking =true;
say
stillWorking =false;
when you need itThank i try it