Called by the browser or applet viewer to inform this applet that it should start its execution. It is called after the init method and each time the applet is revisited in a Web page. Called explicitly via the first call to PApplet.paint(), because PAppletGL needs to have a usable screen befor
()
| 1322 | * PAppletGL needs to have a usable screen before getting things rolling. |
| 1323 | */ |
| 1324 | public void start() { |
| 1325 | // paused = false; // unpause the thread // removing for 3.0a5, don't think we want this here |
| 1326 | |
| 1327 | resume(); |
| 1328 | handleMethods("resume"); |
| 1329 | surface.resumeThread(); |
| 1330 | } |
| 1331 | |
| 1332 | |
| 1333 | /** |
no test coverage detected