I'm trying to take sound effects I have made and put them into my game. I have a sound like walking that I want to loop while the user is walking and once the user stops walking, I want the sound to stop. I went through the DirectX tutorials on using XACT but it does not answer my question. In my code I try to use the play function and when they are not moving i stop the walking sound. What happens with this is it just plays the whole sound clip even when i stop moving.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Are you using the XACT_FLAG_STOP_IMMEDIATE flag?

link|improve this answer
AHH I see now I was able to get it to stop imdiatly. I was just passing 0 to that flag. – Katianie Apr 27 '11 at 19:15
Now i Need to figure out how to loop the sound when it compleats as long as the user is moving. – Katianie Apr 27 '11 at 19:17
The wave file itself can be marked as looping, or you can set nLoopCount to a big number when you PrepareWave. – AShelly Apr 27 '11 at 19:24
How do u mark the wave file as looping? – Katianie Apr 27 '11 at 19:28
msdn.microsoft.com/en-us/library/… - look for the section where you can set the wave properties to Infinite looping. – AShelly Apr 27 '11 at 19:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.