processing-sound-archive icon indicating copy to clipboard operation
processing-sound-archive copied to clipboard

3D sound - enhancement

Open arthur109 opened this issue 8 years ago • 1 comments

Please implement 3d sound for headphones, stereo speakers..., preferably as simple as possible like:

playSound(soundFile,300,20);

with also a way to position where the ears are like:

camera.rightEar.position.x = 400; camera.rightEar.position.y = 410;

camera.leftEar.position.x = 300; camera.leftEar.position.y = 410;

(maybe even in relative pixels to the camera? so when the camera rotates the ears move with it?)

camera.relativeEars = true;

this would be greatly appreciated

arthur109 avatar Aug 22 '17 16:08 arthur109

Wouldn't you also need to specify the z-coordinate, even in a 2D sketch? (Since in a 2D sketch, you might want the user's ears to sit 100px back from the screen, say.)

GKFX avatar Aug 25 '17 19:08 GKFX