diff options
Diffstat (limited to 'gaunt01/src/testApp.h')
| -rw-r--r-- | gaunt01/src/testApp.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gaunt01/src/testApp.h b/gaunt01/src/testApp.h index dd52d76..a5ee556 100644 --- a/gaunt01/src/testApp.h +++ b/gaunt01/src/testApp.h @@ -3,6 +3,7 @@ #include <set> #include "ofMain.h" +#include "tesselator.h" #include "ofxOpenCv.h" #include "ofxRay.h" @@ -90,6 +91,22 @@ class testApp : public ofBaseApp{ //vector<ofVec3f> players; trapdoor trapDoor; ofMesh ground; + + vector<ofPolyline> groundlines; + ofTessellator tess; + + void makeGround(int doornumber); + + vector<trapdoor> trapdoors; + float trapdoorSize; + float trapdoorSlotSize; + int numtrapdoorSlots; + + int trapdoorCounter; + float trapdoorTime; //time per trap door + float trapdoorTimer; + + ofSoundPlayer* doorsounds; ofVec3f* testpts; |
