Are there plans to add mute functionality to Studio::VCA
? Studio::VCA::setVolume()
allows to set volume to 0 and 1 as a poor man’s mute. But when unmuting with setVolume(1.0f)
any previous set volume levels are ignored. I can manually store the volume levels when muting in eg a vector, but then I loose thread safety.
tl;dr any plans for Studio::VCA::setMute(bool mute)
?