Effects -> fx, untag "crossfade"

This commit is contained in:
Václav Volhejn 2025-10-19 21:19:42 +02:00
parent 69360b3ec8
commit 2483c673a4
3 changed files with 133 additions and 133 deletions

File diff suppressed because it is too large Load diff

View file

@ -180,7 +180,7 @@ export function registerWaveTable(key, tables, params) {
* Loads a collection of wavetables to use with `s` * Loads a collection of wavetables to use with `s`
* *
* @name tables * @name tables
* @tags effects * @tags fx
*/ */
export const tables = async (url, frameLen, json, options = {}) => { export const tables = async (url, frameLen, json, options = {}) => {
if (json !== undefined) return _processTables(json, url, frameLen); if (json !== undefined) return _processTables(json, url, frameLen);

View file

@ -18,7 +18,7 @@ function applyGainCurve(val) {
* @param {number} a - Signal A (can be a single value or an array value in buffer processing). * @param {number} a - Signal A (can be a single value or an array value in buffer processing).
* @param {number} b - Signal B (can be a single value or an array value in buffer processing). * @param {number} b - Signal B (can be a single value or an array value in buffer processing).
* @param {number} m - Crossfade parameter (0.0 = all A, 1.0 = all B, 0.5 = equal mix). * @param {number} m - Crossfade parameter (0.0 = all A, 1.0 = all B, 0.5 = equal mix).
* @tags effects * @noAutocomplete
* @returns {number} Crossfaded output value. * @returns {number} Crossfaded output value.
*/ */
function crossfade(a, b, m) { function crossfade(a, b, m) {