From e0e3ab941e2acdacbdf81b9cfc097a75539df079 Mon Sep 17 00:00:00 2001 From: Felix Roos Date: Sat, 16 Apr 2022 21:38:23 +0200 Subject: [PATCH] remove experimental tone tutorial --- repl/src/tutorial/tutorial.mdx | 53 ---------------------------------- 1 file changed, 53 deletions(-) diff --git a/repl/src/tutorial/tutorial.mdx b/repl/src/tutorial/tutorial.mdx index af64fc5e..117695c9 100644 --- a/repl/src/tutorial/tutorial.mdx +++ b/repl/src/tutorial/tutorial.mdx @@ -590,59 +590,6 @@ Helper to set the envelope of a Tone.js instrument. Intended to be used with Ton .tone(synth(adsr(0,.1,0,0)).chain(out()))`} /> -### Experimental: Patternification - -While the above methods work for static sounds, there is also the option to patternify tone methods. -This is currently experimental, because the performance is not stable, and audio glitches will appear after some time. -It would be great to get this to work without glitches though, because it is fun! - -#### synth(type) - -With .synth, you can create a synth with a variable wave type: - -").slow(4)`} -/> - -#### adsr(attack, decay?, sustain?, release?) - -Chainable Envelope helper: - - - -Due to having more than one argument, this method is not patternified. - -#### filter(cuttoff) - -Patternified filter: - - - -#### gain(value) - -Patternified gain: - - - -#### autofilter(value) - -Patternified autofilter: - -")`} -/> - ## Tonal API The Tonal API, uses [tonaljs](https://github.com/tonaljs/tonal) to provide helpers for musical operations.