I'm using OpenAL in my iPhone project to create sounds that attenuate when farther away from the listener.
However - I also want to play some sound effects that shall not be attenuated by distance.
So far I solved that by using stereo sounds, which don't get attenuated. But now I'm adding a lot of voiceacting which takes quite some space - so I want them to be mono and now have the problem again that they get attenuated by distance.
My next solution was to set "AL_MIN_GAIN" of the source playing the voice samples to 1.0, but this seems to be working only on the simulator, not on the device.
Are there other ways to play sound effects with openAL that shall not be attenuated by distance?
Just use
AL_DIRECT_CHANNELS_SOFT
macro is defined in<AL/alext.h>