Sets the value of a control channel in the software bus * * @param {string} channelName A string containing the channel name. * @param {number} value The value to be set. * @memberof CsoundMixin
(channelName, value)
| 356 | */ |
| 357 | |
| 358 | setControlChannel(channelName, value) { |
| 359 | CSOUND.setControlChannel(this.csound, channelName, value); |
| 360 | }, |
| 361 | |
| 362 | /** Sets the value of a string channel in the software bus |
| 363 | * |
nothing calls this directly
no test coverage detected