--------------------------------------------------------------
| 47 | |
| 48 | //-------------------------------------------------------------- |
| 49 | void ofApp::draw() { |
| 50 | // call the script's draw() function |
| 51 | lua.scriptDraw(); |
| 52 | |
| 53 | ofSetColor(0); |
| 54 | ofDrawBitmapString("use <- & -> to change between scripts", 10, ofGetHeight()-22); |
| 55 | ofDrawBitmapString(scripts[currentScript], 10, ofGetHeight()-10); |
| 56 | } |
| 57 | |
| 58 | //-------------------------------------------------------------- |
| 59 | void ofApp::exit() { |
nothing calls this directly
no test coverage detected