Hi everyone,
This is probably a simple question, but i hace a short cue that serves as the background music in my game, is there any way to keep it looping?
I tried this from an MS example:
if (cue.IsPaused)
{
cue.Resume();
}
else if (cue.IsPlaying)
{
cue.Pause();
}
else
{
// If stopped, create a new cue.
cue = sbank.GetCue("ArcticSong");
cue.Play();
}
If anyone has any ideas they would be much appreciated!