A small plugin for isadora using openframeworks and ofxKinect to get the Kinect running inside of isadora.
saynono/ofxIsadoraKinect
master
Name already in use
Code
-
Clone
Use Git or checkout with SVN using the web URL.
Work fast with our official CLI. Learn more about the CLI.
- Open with GitHub Desktop
- Download ZIP
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
Latest commit
Git stats
Files
// =================================================================================== // Isadora OpenFrameworks additions 2011 Vincent Rebers. http://www.say-nono.com // =================================================================================== // // IMPORTANT: // In order to avoid FMODex you need to modify two openframeworks files and be sure that you add the // definition -DUSE_OPENAL to the Project Settings (in my case "GCC 4.2" -> "Other C++ Flags"): // --------------------------------------------------------------------------------- // // ofMain.h (Line:xxx) : // //-------------------------- // // audio // #include "ofSoundStream.h" // #ifndef USE_OPENAL //<----- if USE_OPENAL is selected, don't load the regular ofSoundPlayer // #include "ofSoundPlayer.h" // #endif // // // --------------------------------------------------------------------------------- // // ofAppRunner.cpp (Line:58) : // //------------------------ // // try to close FMOD: // #ifndef USE_OPENAL //<----- if USE_OPENAL is selected, don't load the regular ofSoundPlayer // ofSoundPlayer::closeFmod(); // #endif // // //// ---------------------------------------------------------------------------------
About
A small plugin for isadora using openframeworks and ofxKinect to get the Kinect running inside of isadora.