Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ Follow this link [http://connect.creativelabs.com/openal/Downloads/Forms/AllItem
- ofxTextInputField
- ofxRange
- ofxTween
- ofxXmlSettings
- Generate project
- If you are in Windows VC2010, go to Project Properties -> Configuration Properties -> Build Events -> Post-Build events -> Command Line and paste in the following build event

Expand Down Expand Up @@ -232,7 +233,7 @@ MyClass.cpp

//--------------------------------------------------------------
void MyClass::receivedBang(ofxTLBangEventArgs& bang){
ofLogNotice("Bang fired from track " + bang->track.getName());
ofLogNotice("Bang fired from track " + bang.track->getName());
if(bang.track->getName() == "trigger particles"){
particleGenerator.start(); //some example response
}
Expand Down