 inOverMyHead Guest |
Quote
|
2017-12-20 19:43:06 |
|
I'm in the process of making a virtual piano using C++ on Visual Studio 2017, and as a result have several dozen sounds that mist be defined and accessed individually throughout my program. In order to make my code more efficient, I want to make an list of the ISound* objects. I've spent time trying to make arrays and vectors work, with no luck. Is this even possible with irrKlang? If so, how might I do it?
|
 erik Registered User |
Quote
|
2017-12-21 04:20:33 |
|
You probably mean ISoundSource* s? You can get those with ISoundEngine ::getSoundSourceCount() and ISoundEngine ::getSoundSource()
|