Im looking for help on a couple of problems I've experienced with the GLXTreem SoundEngine.
The first problem is that I cannot turn the sound off. If I use
Code:
FMusicState := Value;
If Not FMusicState then
MusicEngine.Sounds.Find('Music').Stop
Else
MusicEngine.Sounds.Find('Music').Play;
The Stop doesn;t turn the music off but just makes it softer, doing the Play then returns it to its normal volume.
I initialize the Music Engine and the relevant sound by:
Code:
MusicEngine.Init;
Sound := MusicEngine.Sounds.Add;
Sound.Load('Sounds/Default8bit.wav');
Sound.SoundType := st2D;
Sound.Name:='Music';
The FMod.dll I'm using is the one that came in the GLXTreem download file.
Bookmarks