UNPKG

spessasynth_core

Version:

MIDI and SoundFont2/DLS library with no compromises

17 lines 338 B
/** * @param isMuted {boolean} * @this {MidiAudioChannel} */ export function muteChannel(isMuted) { if (isMuted) { this.stopAllNotes(true); } this.isMuted = isMuted; this.sendChannelProperty(); this.synth.callEvent("mutechannel", { channel: this.channelNumber, isMuted: isMuted }); }