--------------------------------------------------------------
| 41 | |
| 42 | //-------------------------------------------------------------- |
| 43 | void ofApp::keyPressed(int key) { |
| 44 | if(key == 'r') { |
| 45 | lua.scriptExit(); |
| 46 | lua.init(true); // stop on error |
| 47 | loadScript(); |
| 48 | return; |
| 49 | } |
| 50 | lua.scriptKeyPressed(key); |
| 51 | } |
| 52 | |
| 53 | //-------------------------------------------------------------- |
| 54 | void ofApp::mouseMoved(int x, int y) { |
nothing calls this directly
no test coverage detected