I'm reading this book "Learning XNA 4.0", and in chapter 6 it teaches how to play sounds using XACT Audio files. It asks me to create an AudioEngine object, but I can't find that class.AudioEngine

I have the right using statement (Microsoft.Xna.Framework.Audio) and the right reference (microsoft.xna.framework.dll).

does anybody have any idea whats wrong?

link|improve this question

Can you show us your code? – justnS Dec 5 '11 at 19:38
theres nothing to show, I just started a new project, and cant find the AudioEngine – user836252 Dec 5 '11 at 22:27
feedback

1 Answer

up vote 4 down vote accepted

This is an error in the documentation. AudioEngine is actually in the Microsoft.Xna.Framework.Xact assembly. Add a reference to that, and everything should work as expected.

Note that XACT is not available on Windows Phone 7 (this is why it is in a separate assembly). If you plan to go mobile later, use SoundEffect instead.

link|improve this answer
man, you are the best!!! :D – user836252 Dec 6 '11 at 20:18
feedback

Your Answer

 
or
required, but never shown

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