Page 2 of 2

Re: Modifying stereo sound placement

Posted: Sun Jul 15, 2012 1:43 am
by kexisse
Somehow I had OS X's assistive devices "Play all audio in mono" turned on. Sorry for wasting everyone's time :S
Screenshot of the settings.
Screenshot of the settings.
Screen Shot 2012-07-15 at 10.38.57.png (74.56 KiB) Viewed 1154 times
To clarify, Löve can indeed play stereo sound.

Code: Select all

source = love.audio.newSource("bleep.ogg", "static")
source:setPosition(x, y)

Re: Modifying stereo sound placement

Posted: Sun Jul 15, 2012 4:03 am
by kexisse
I updated my stereo sound testbed. You can now modify the rolloff, listener depth, distance model.
Maybe it will be useful for people who want to test out the effects of each of these settings.

I'm trying to find a sweet spot where sounds on-screen have a small amount of left/right difference, but then more when they go off-screen.
I think I'll fake this by reducing the overall volume in a separate routine that is applied once the sound source is off-screen.