--------------------------------------------------------------
| 12 | |
| 13 | //-------------------------------------------------------------- |
| 14 | void ofApp::setup() { |
| 15 | |
| 16 | ofSetVerticalSync(true); |
| 17 | ofSetFrameRate(30); |
| 18 | ofSetLogLevel("ofxLua", OF_LOG_VERBOSE); |
| 19 | |
| 20 | lua.init(true); |
| 21 | lua.addListener(this); |
| 22 | runTests(); |
| 23 | loadScript(); |
| 24 | } |
| 25 | |
| 26 | //-------------------------------------------------------------- |
| 27 | void ofApp::update() { |
nothing calls this directly
no test coverage detected