I'm trying to mute, unmute, and modify gain of tracks after they are loaded but the changes don't seem to be affecting the tracks when I run Mixer.play();
I'm just simply running Mixer.getTrack(tracksubtrack.subtrack.label).mute(); then calling Mixer.play(). With four tracks loaded into the mixer, and even having all of them muted, they all still play. I also tried setting gain to 0 instead of muting, and that did not have an effect either. I can see the status of the track set to mute: true, but the mixer does not reflect that status.
I'm trying to mute, unmute, and modify gain of tracks after they are loaded but the changes don't seem to be affecting the tracks when I run
Mixer.play();
I'm just simply running
Mixer.getTrack(tracksubtrack.subtrack.label).mute();
then callingMixer.play()
. With four tracks loaded into the mixer, and even having all of them muted, they all still play. I also tried setting gain to 0 instead of muting, and that did not have an effect either. I can see the status of the track set to mute: true, but the mixer does not reflect that status.Let me know if I can give any more information.