iPhone: What is the best approach to changing the sound of a rolling ball based on speed?

Posted by Bob on Stack Overflow See other posts from Stack Overflow or by Bob
Published on 2010-06-14T21:36:42Z Indexed on 2010/06/14 21:42 UTC
Read the original article Hit count: 140

Filed under:
|
|
|

I need to play a sound of a ball rolling and change the sound based on the ball's speed. I was using AVFoundation and just playing different samples but that didn't sound natural enough. I tried OpenAL and something like:

alSourcef(sourceID, AL_PITCH, thePitch);

and passing in thePitch, but didn't like the results.

Does anyone have any suggestions or examples / tutorials?

Thanks.

© Stack Overflow or respective owner

Related posts about iphone

Related posts about objective-c