From ac359a0e9e66b872a8bde93220351fe9d4248148 Mon Sep 17 00:00:00 2001 From: Felix Roos Date: Thu, 9 Nov 2023 08:17:16 +0100 Subject: [PATCH] doc: phaser synonyms --- packages/core/controls.mjs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/core/controls.mjs b/packages/core/controls.mjs index 871ec18d..6bba4131 100644 --- a/packages/core/controls.mjs +++ b/packages/core/controls.mjs @@ -385,6 +385,7 @@ const generic_params = [ * Phaser audio effect that approximates popular guitar pedals. * * @name phaser + * @synonyms ph * @param {number | Pattern} speed speed of modulation * @example * run(8).scale("D:pentatonic").note().sound("sawtooth").release(0.5).phaser("2 8") @@ -396,6 +397,7 @@ const generic_params = [ * The frequency sweep range of the lfo for the phaser effect. Defaults to 2000 * * @name phasersweep + * @synonyms phs * @param {number | Pattern} phasersweep most useful values are between 0 and 4000 * @example * run(8).scale("D:pentatonic").note().sound("sawtooth").release(0.5).phaser("2 8").phasersweep(800) @@ -407,6 +409,7 @@ const generic_params = [ * The center frequency of the phaser in HZ. Defaults to 1000 * * @name phasercenter + * @synonyms phc * @param {number | Pattern} centerfrequency in HZ * @example * run(8).scale("D:pentatonic").note().sound("sawtooth").release(0.5).phaser("2 8").phasercenter(2000) @@ -419,6 +422,7 @@ const generic_params = [ * The amount the signal is affected by the phaser effect. Defaults to 0.75 * * @name phaserdepth + * @synonyms phd * @param {number | Pattern} depth number between 0 and 1 * @example * run(8).scale("D:pentatonic").note().sound("sawtooth").release(0.5).phaser("2 8").phasercenter(200)