Fixing some syntax and a typo
This commit is contained in:
parent
0065db8569
commit
af53bab259
1 changed files with 3 additions and 5 deletions
|
|
@ -66,18 +66,16 @@ You can write your own chained function using `register`. Here's the above chain
|
||||||
|
|
||||||
<MiniRepl
|
<MiniRepl
|
||||||
client:idle
|
client:idle
|
||||||
tune={`const effectChain = register('effectChain',
|
tune={`const effectChain = register('effectChain', (pat) => pat
|
||||||
(pat) => pat
|
|
||||||
.s("sawtooth")
|
.s("sawtooth")
|
||||||
.cutoff(500)
|
.cutoff(500)
|
||||||
//.delay(0.5)
|
//.delay(0.5)
|
||||||
.room(0.5)
|
.room(0.5)
|
||||||
);
|
);
|
||||||
note("a3 c#4 e4 a4").effectChain()
|
note("a3 c#4 e4 a4").effectChain()`}
|
||||||
`}
|
|
||||||
/>
|
/>
|
||||||
|
|
||||||
Try adding `.rev()` after `effectChain()` to see further effects added.
|
Try adding `.rev()` after `effectChain()` to hear further effects added.
|
||||||
|
|
||||||
# Comments
|
# Comments
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue